diff options
| author | Martin Blapp <mbr@FreeBSD.org> | 2003-05-12 19:50:21 +0000 |
|---|---|---|
| committer | Martin Blapp <mbr@FreeBSD.org> | 2003-05-12 19:50:21 +0000 |
| commit | 7eac366be18c2ec09d8eacbce7464080a26f1a21 (patch) | |
| tree | 212be6964be0d2e91eb856bd1a93cf1e25b73228 /sys/dev/dc | |
| parent | bd3fc74891adcaf0f870c0ea16b2693e0271159f (diff) | |
Notes
Diffstat (limited to 'sys/dev/dc')
| -rw-r--r-- | sys/dev/dc/if_dc.c | 4 | ||||
| -rw-r--r-- | sys/dev/dc/if_dcreg.h | 10 |
2 files changed, 14 insertions, 0 deletions
diff --git a/sys/dev/dc/if_dc.c b/sys/dev/dc/if_dc.c index 294f81b0c991..c083bc40a423 100644 --- a/sys/dev/dc/if_dc.c +++ b/sys/dev/dc/if_dc.c @@ -46,6 +46,7 @@ * Xircom X3201 (www.xircom.com) * Abocom FE2500 * Conexant LANfinity (www.conexant.com) + * 3Com OfficeConnect 10/100B 3CSOHO100B (www.3com.com) * * Datasheets for the 21143 are available at developer.intel.com. * Datasheets for the clone parts can be found at their respective sites. @@ -196,6 +197,8 @@ static struct dc_type dc_devs[] = { "Hawking CB102 CardBus 10/100" }, { DC_VENDORID_PLANEX, DC_DEVICEID_FNW3602T, "PlaneX FNW-3602-T CardBus 10/100" }, + { DC_VENDORID_3COM, DC_DEVICEID_3CSOHOB, + "3Com OfficeConnect 10/100B" }, { 0, 0, NULL } }; @@ -1987,6 +1990,7 @@ dc_attach(dev) case DC_DEVICEID_FE2500: case DC_DEVICEID_EN2242: case DC_DEVICEID_HAWKING_PN672TX: + case DC_DEVICEID_3CSOHOB: sc->dc_type = DC_TYPE_AN985; sc->dc_flags |= DC_64BIT_HASH; sc->dc_flags |= DC_TX_USE_TX_INTR; diff --git a/sys/dev/dc/if_dcreg.h b/sys/dev/dc/if_dcreg.h index d4536c7f4c05..d15d68cb3c66 100644 --- a/sys/dev/dc/if_dcreg.h +++ b/sys/dev/dc/if_dcreg.h @@ -868,6 +868,16 @@ struct dc_softc { #define DC_DEVICEID_AN985 0x0985 /* + * 3COM PCI vendor ID + */ +#define DC_VENDORID_3COM 0x10b7 + +/* + * 3COM OfficeConnect 10/100B (3CSOHO100B-TX) + */ +#define DC_DEVICEID_3CSOHOB 0x9300 + +/* * ASIX vendor ID. */ #define DC_VENDORID_ASIX 0x125B |
