ichxrom.c (94bd217e2d683719ab21a4ac117d8a1b91cbedc9) | ichxrom.c (06f25510692385ed4dadd23f7d3d064d1ab11c2d) |
---|---|
1/* 2 * ichxrom.c 3 * 4 * Normal mappings of chips in physical memory 5 */ 6 7#include <linux/module.h> 8#include <linux/types.h> --- 70 unchanged lines hidden (view full) --- 79 window->virt = NULL; 80 window->phys = 0; 81 window->size = 0; 82 window->pdev = NULL; 83 } 84} 85 86 | 1/* 2 * ichxrom.c 3 * 4 * Normal mappings of chips in physical memory 5 */ 6 7#include <linux/module.h> 8#include <linux/types.h> --- 70 unchanged lines hidden (view full) --- 79 window->virt = NULL; 80 window->phys = 0; 81 window->size = 0; 82 window->pdev = NULL; 83 } 84} 85 86 |
87static int __devinit ichxrom_init_one (struct pci_dev *pdev, | 87static int ichxrom_init_one (struct pci_dev *pdev, |
88 const struct pci_device_id *ent) 89{ 90 static char *rom_probe_types[] = { "cfi_probe", "jedec_probe", NULL }; 91 struct ichxrom_window *window = &ichxrom_window; 92 struct ichxrom_map_info *map = NULL; 93 unsigned long map_top; 94 u8 byte; 95 u16 word; --- 285 unchanged lines hidden --- | 88 const struct pci_device_id *ent) 89{ 90 static char *rom_probe_types[] = { "cfi_probe", "jedec_probe", NULL }; 91 struct ichxrom_window *window = &ichxrom_window; 92 struct ichxrom_map_info *map = NULL; 93 unsigned long map_top; 94 u8 byte; 95 u16 word; --- 285 unchanged lines hidden --- |