mtd/drivers/mtd/maps pci.c,1.5,1.6
David Woodhouse
dwmw2 at infradead.org
Mon Jul 12 10:36:07 EDT 2004
Update of /home/cvs/mtd/drivers/mtd/maps
In directory phoenix.infradead.org:/tmp/cvs-serv24782
Modified Files:
pci.c
Log Message:
Merge from 2.6: pci_name() and remove __devinitdata from pci table
Index: pci.c
===================================================================
RCS file: /home/cvs/mtd/drivers/mtd/maps/pci.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- pci.c 20 May 2003 20:59:31 -0000 1.5
+++ pci.c 12 Jul 2004 14:36:04 -0000 1.6
@@ -140,7 +140,7 @@
pci_read_config_dword(dev, PCI_ROM_ADDRESS, &val);
val |= PCI_ROM_ADDRESS_ENABLE;
pci_write_config_dword(dev, PCI_ROM_ADDRESS, val);
- printk("%s: enabling expansion ROM\n", dev->slot_name);
+ printk("%s: enabling expansion ROM\n", pci_name(dev));
}
}
@@ -191,7 +191,7 @@
* PCI device ID table
*/
-static struct pci_device_id mtd_pci_ids[] __devinitdata = {
+static struct pci_device_id mtd_pci_ids[] = {
{
.vendor = PCI_VENDOR_ID_INTEL,
.device = 0x530d,
@@ -306,7 +306,7 @@
goto release;
map->map = mtd_pci_map;
- map->map.name = dev->slot_name;
+ map->map.name = pci_name(dev);
map->dev = dev;
map->exit = info->exit;
map->translate = info->translate;
More information about the linux-mtd-cvs
mailing list