[pci] Add driver_data field to struct pci_device_id

Modified-by: Michael Brown <mcb30@etherboot.org>
Signed-off-by: Michael Brown <mcb30@etherboot.org>
This commit is contained in:
Thomas Miletich
2009-03-26 10:19:03 +00:00
committed by Michael Brown
parent 87b494bbab
commit 3da6f1c7bd
39 changed files with 335 additions and 331 deletions

View File

@@ -2241,8 +2241,8 @@ static void arbel_remove ( struct pci_device *pci ) {
}
static struct pci_device_id arbel_nics[] = {
PCI_ROM ( 0x15b3, 0x6282, "mt25218", "MT25218 HCA driver" ),
PCI_ROM ( 0x15b3, 0x6274, "mt25204", "MT25204 HCA driver" ),
PCI_ROM ( 0x15b3, 0x6282, "mt25218", "MT25218 HCA driver", 0 ),
PCI_ROM ( 0x15b3, 0x6274, "mt25204", "MT25204 HCA driver", 0 ),
};
struct pci_driver arbel_driver __pci_driver = {

View File

@@ -2310,10 +2310,10 @@ static void hermon_remove ( struct pci_device *pci ) {
}
static struct pci_device_id hermon_nics[] = {
PCI_ROM ( 0x15b3, 0x6340, "mt25408", "MT25408 HCA driver" ),
PCI_ROM ( 0x15b3, 0x634a, "mt25418", "MT25418 HCA driver" ),
PCI_ROM ( 0x15b3, 0x6732, "mt26418", "MT26418 HCA driver" ),
PCI_ROM ( 0x15b3, 0x673c, "mt26428", "MT26428 HCA driver" ),
PCI_ROM ( 0x15b3, 0x6340, "mt25408", "MT25408 HCA driver", 0 ),
PCI_ROM ( 0x15b3, 0x634a, "mt25418", "MT25418 HCA driver", 0 ),
PCI_ROM ( 0x15b3, 0x6732, "mt26418", "MT26418 HCA driver", 0 ),
PCI_ROM ( 0x15b3, 0x673c, "mt26428", "MT26428 HCA driver", 0 ),
};
struct pci_driver hermon_driver __pci_driver = {

View File

@@ -2386,7 +2386,7 @@ static void linda_remove ( struct pci_device *pci ) {
}
static struct pci_device_id linda_nics[] = {
PCI_ROM ( 0x1077, 0x7220, "iba7220", "QLE7240/7280 HCA driver" ),
PCI_ROM ( 0x1077, 0x7220, "iba7220", "QLE7240/7280 HCA driver", 0 ),
};
struct pci_driver linda_driver __pci_driver = {