Browse Source

[forcedeth] Add support for PCI ID 10de:0373

tags/v0.9.4
Andrew Schran 16 years ago
parent
commit
34c1a5b91d
1 changed files with 4 additions and 0 deletions
  1. 4
    0
      src/drivers/net/forcedeth.c

+ 4
- 0
src/drivers/net/forcedeth.c View File

82
 #define PCI_DEVICE_ID_NVIDIA_NVENET_9           0x0057
82
 #define PCI_DEVICE_ID_NVIDIA_NVENET_9           0x0057
83
 #define PCI_DEVICE_ID_NVIDIA_NVENET_10          0x0037
83
 #define PCI_DEVICE_ID_NVIDIA_NVENET_10          0x0037
84
 #define PCI_DEVICE_ID_NVIDIA_NVENET_11          0x0038
84
 #define PCI_DEVICE_ID_NVIDIA_NVENET_11          0x0038
85
+#define PCI_DEVICE_ID_NVIDIA_NVENET_15          0x0373
85
 
86
 
86
 
87
 
87
 /*
88
 /*
1338
  		else
1339
  		else
1339
  			np->tx_flags |= NV_TX2_LASTPACKET1;
1340
  			np->tx_flags |= NV_TX2_LASTPACKET1;
1340
   		break;
1341
   		break;
1342
+	case 0x0373:
1343
+		/* Fall Through */
1341
  	case 0x0086:
1344
  	case 0x0086:
1342
  		/* Fall Through */
1345
  		/* Fall Through */
1343
  	case 0x008c:
1346
  	case 0x008c:
1420
 PCI_ROM(0x10de, 0x0057, "nforce9", "nForce NVENET_9 Ethernet Controller"),
1423
 PCI_ROM(0x10de, 0x0057, "nforce9", "nForce NVENET_9 Ethernet Controller"),
1421
 PCI_ROM(0x10de, 0x0037, "nforce10", "nForce NVENET_10 Ethernet Controller"),
1424
 PCI_ROM(0x10de, 0x0037, "nforce10", "nForce NVENET_10 Ethernet Controller"),
1422
 PCI_ROM(0x10de, 0x0038, "nforce11", "nForce NVENET_11 Ethernet Controller"),
1425
 PCI_ROM(0x10de, 0x0038, "nforce11", "nForce NVENET_11 Ethernet Controller"),
1426
+PCI_ROM(0x10de, 0x0373, "nforce15", "nForce NVENET_15 Ethernet Controller")
1423
 };
1427
 };
1424
 
1428
 
1425
 PCI_DRIVER ( forcedeth_driver, forcedeth_nics, PCI_NO_CLASS );
1429
 PCI_DRIVER ( forcedeth_driver, forcedeth_nics, PCI_NO_CLASS );

Loading…
Cancel
Save