summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Schran2008-07-10 02:19:08 +0200
committerMichael Brown2008-07-10 02:19:08 +0200
commit34c1a5b91d5ef2b74278690f12cee9df3c0b3d27 (patch)
tree86013e32d6172c8d0381d4798669e714c76577f1
parent[hermon] Add support for MT26418 device (diff)
downloadipxe-34c1a5b91d5ef2b74278690f12cee9df3c0b3d27.tar.gz
ipxe-34c1a5b91d5ef2b74278690f12cee9df3c0b3d27.tar.xz
ipxe-34c1a5b91d5ef2b74278690f12cee9df3c0b3d27.zip
[forcedeth] Add support for PCI ID 10de:0373
-rw-r--r--src/drivers/net/forcedeth.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/drivers/net/forcedeth.c b/src/drivers/net/forcedeth.c
index f6195885..54fadbd7 100644
--- a/src/drivers/net/forcedeth.c
+++ b/src/drivers/net/forcedeth.c
@@ -82,6 +82,7 @@ static unsigned long BASE;
#define PCI_DEVICE_ID_NVIDIA_NVENET_9 0x0057
#define PCI_DEVICE_ID_NVIDIA_NVENET_10 0x0037
#define PCI_DEVICE_ID_NVIDIA_NVENET_11 0x0038
+#define PCI_DEVICE_ID_NVIDIA_NVENET_15 0x0373
/*
@@ -1338,6 +1339,8 @@ static int forcedeth_probe ( struct nic *nic, struct pci_device *pci ) {
else
np->tx_flags |= NV_TX2_LASTPACKET1;
break;
+ case 0x0373:
+ /* Fall Through */
case 0x0086:
/* Fall Through */
case 0x008c:
@@ -1420,6 +1423,7 @@ PCI_ROM(0x10de, 0x0056, "nforce8", "nForce NVENET_8 Ethernet Controller"),
PCI_ROM(0x10de, 0x0057, "nforce9", "nForce NVENET_9 Ethernet Controller"),
PCI_ROM(0x10de, 0x0037, "nforce10", "nForce NVENET_10 Ethernet Controller"),
PCI_ROM(0x10de, 0x0038, "nforce11", "nForce NVENET_11 Ethernet Controller"),
+PCI_ROM(0x10de, 0x0373, "nforce15", "nForce NVENET_15 Ethernet Controller")
};
PCI_DRIVER ( forcedeth_driver, forcedeth_nics, PCI_NO_CLASS );