summaryrefslogtreecommitdiffstats
path: root/src/drivers/net/bnx2.c
diff options
context:
space:
mode:
authorThomas Miletich2009-03-26 11:19:03 +0100
committerMichael Brown2009-03-26 11:22:15 +0100
commit3da6f1c7bdc227ed0b5ab45562278fa4a18c15d3 (patch)
treed82a21d15227a2fa7ff990363e50fdc38a132c71 /src/drivers/net/bnx2.c
parent[time] Add the sleep command (diff)
downloadipxe-3da6f1c7bdc227ed0b5ab45562278fa4a18c15d3.tar.gz
ipxe-3da6f1c7bdc227ed0b5ab45562278fa4a18c15d3.tar.xz
ipxe-3da6f1c7bdc227ed0b5ab45562278fa4a18c15d3.zip
[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/bnx2.c')
-rw-r--r--src/drivers/net/bnx2.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/drivers/net/bnx2.c b/src/drivers/net/bnx2.c
index 9c989c4c..9427d477 100644
--- a/src/drivers/net/bnx2.c
+++ b/src/drivers/net/bnx2.c
@@ -2673,10 +2673,10 @@ err_out_disable:
}
static struct pci_device_id bnx2_nics[] = {
- PCI_ROM(0x14e4, 0x164a, "bnx2-5706", "Broadcom NetXtreme II BCM5706"),
- PCI_ROM(0x14e4, 0x164c, "bnx2-5708", "Broadcom NetXtreme II BCM5708"),
- PCI_ROM(0x14e4, 0x16aa, "bnx2-5706S", "Broadcom NetXtreme II BCM5706S"),
- PCI_ROM(0x14e4, 0x16ac, "bnx2-5708S", "Broadcom NetXtreme II BCM5708S"),
+ PCI_ROM(0x14e4, 0x164a, "bnx2-5706", "Broadcom NetXtreme II BCM5706", 0),
+ PCI_ROM(0x14e4, 0x164c, "bnx2-5708", "Broadcom NetXtreme II BCM5708", 0),
+ PCI_ROM(0x14e4, 0x16aa, "bnx2-5706S", "Broadcom NetXtreme II BCM5706S", 0),
+ PCI_ROM(0x14e4, 0x16ac, "bnx2-5708S", "Broadcom NetXtreme II BCM5708S", 0),
};
PCI_DRIVER ( bnx2_driver, bnx2_nics, PCI_NO_CLASS );