diff options
author | Thomas Miletich <thomas.miletich@gmail.com> | 2009-03-26 10:19:03 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2009-03-26 10:22:15 +0000 |
commit | 3da6f1c7bdc227ed0b5ab45562278fa4a18c15d3 (patch) | |
tree | d82a21d15227a2fa7ff990363e50fdc38a132c71 /src/drivers/net/prism2_pci.c | |
parent | 87b494bbab0616e16a5efe38c7de356374b5d61f (diff) | |
download | ipxe-3da6f1c7bdc227ed0b5ab45562278fa4a18c15d3.tar.gz |
[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>
Diffstat (limited to 'src/drivers/net/prism2_pci.c')
-rw-r--r-- | src/drivers/net/prism2_pci.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/drivers/net/prism2_pci.c b/src/drivers/net/prism2_pci.c index eda7bf50b..9e5208b62 100644 --- a/src/drivers/net/prism2_pci.c +++ b/src/drivers/net/prism2_pci.c @@ -37,9 +37,9 @@ static void prism2_pci_disable ( struct nic *nic ) { } static struct pci_device_id prism2_pci_nics[] = { -PCI_ROM(0x1260, 0x3873, "prism2_pci", "Harris Semiconductor Prism2.5 clone"), -PCI_ROM(0x1260, 0x3873, "hwp01170", "ActionTec HWP01170"), -PCI_ROM(0x1260, 0x3873, "dwl520", "DLink DWL-520"), +PCI_ROM(0x1260, 0x3873, "prism2_pci", "Harris Semiconductor Prism2.5 clone", 0), +PCI_ROM(0x1260, 0x3873, "hwp01170", "ActionTec HWP01170", 0), +PCI_ROM(0x1260, 0x3873, "dwl520", "DLink DWL-520", 0), }; PCI_DRIVER ( prism2_pci_driver, prism2_pci_nics, PCI_NO_CLASS ); |