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/phantom | |
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/phantom')
-rw-r--r-- | src/drivers/net/phantom/phantom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/net/phantom/phantom.c b/src/drivers/net/phantom/phantom.c index 1d1637d8d..370ce262b 100644 --- a/src/drivers/net/phantom/phantom.c +++ b/src/drivers/net/phantom/phantom.c @@ -2100,7 +2100,7 @@ static void phantom_remove ( struct pci_device *pci ) { /** Phantom PCI IDs */ static struct pci_device_id phantom_nics[] = { - PCI_ROM ( 0x4040, 0x0100, "nx", "NX" ), + PCI_ROM ( 0x4040, 0x0100, "nx", "NX", 0 ), }; /** Phantom PCI driver */ |