Changeset 8daecd8 in rtems for c/src/libchip/network/if_fxp.c
- Timestamp:
- 02/20/03 21:18:14 (19 years ago)
- Children:
- 64db6d3
- Parents:
- bce9f3b1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/libchip/network/if_fxp.c
rbce9f3b1 r8daecd8 191 191 * them. 192 192 */ 193 static struct fxp_ident fxp_ident_table[] = { 193 194 #ifdef NOTUSED 194 static struct fxp_ident fxp_ident_table[] = { 195 /* currently untested */ 195 196 { 0x1229, "Intel Pro 10/100B/100+ Ethernet" }, 196 197 { 0x2449, "Intel Pro/100 Ethernet" }, 198 #endif 197 199 { 0x1209, "Intel Embedded 10/100 Ethernet" }, 200 #ifdef NOTUSED 201 /* currently untested */ 198 202 { 0x1029, "Intel Pro/100 Ethernet" }, 203 #endif 199 204 { 0x1030, "Intel Pro/100 Ethernet" }, 205 #ifdef NOTUSED 206 /* currently untested */ 200 207 { 0x1031, "Intel Pro/100 Ethernet" }, 201 208 { 0x1032, "Intel Pro/100 Ethernet" }, … … 206 213 { 0x1037, "Intel Pro/100 Ethernet" }, 207 214 { 0x1038, "Intel Pro/100 Ethernet" }, 215 #endif 208 216 { 0, NULL }, 209 217 }; 210 #endif211 218 212 219 #if 0 … … 457 464 * find device on pci bus 458 465 */ 459 i = pcib_find_by_devid(0x8086,0x1209,unitNumber-1, 460 &(sc->pci_signature)); 461 DBGLVL_PRINTK(2,"fxp_attach: find_devid returned %d " 466 { int j; 467 468 for (j=0; fxp_ident_table[j].devid; j++ ) { 469 i = pcib_find_by_devid( 0x8086, 470 fxp_ident_table[j].devid, 471 unitNumber-1, 472 &(sc->pci_signature)); 473 DBGLVL_PRINTK(2,"fxp_attach: find_devid returned %d " 462 474 "and pci signature 0x%x\n", 463 475 i,sc->pci_signature); 476 if (PCIB_ERR_SUCCESS == i) 477 break; 478 } 479 } 464 480 465 481 /*
Note: See TracChangeset
for help on using the changeset viewer.