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/dmfe.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/dmfe.c')
-rw-r--r-- | src/drivers/net/dmfe.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/drivers/net/dmfe.c b/src/drivers/net/dmfe.c index 26021e6b3..309d5bcfa 100644 --- a/src/drivers/net/dmfe.c +++ b/src/drivers/net/dmfe.c @@ -1204,10 +1204,10 @@ static struct nic_operations dmfe_operations = { }; static struct pci_device_id dmfe_nics[] = { - PCI_ROM(0x1282, 0x9100, "dmfe9100", "Davicom 9100"), - PCI_ROM(0x1282, 0x9102, "dmfe9102", "Davicom 9102"), - PCI_ROM(0x1282, 0x9009, "dmfe9009", "Davicom 9009"), - PCI_ROM(0x1282, 0x9132, "dmfe9132", "Davicom 9132"), /* Needs probably some fixing */ + PCI_ROM(0x1282, 0x9100, "dmfe9100", "Davicom 9100", 0), + PCI_ROM(0x1282, 0x9102, "dmfe9102", "Davicom 9102", 0), + PCI_ROM(0x1282, 0x9009, "dmfe9009", "Davicom 9009", 0), + PCI_ROM(0x1282, 0x9132, "dmfe9132", "Davicom 9132", 0), /* Needs probably some fixing */ }; PCI_DRIVER ( dmfe_driver, dmfe_nics, PCI_NO_CLASS ); |