diff options
author | mdodd <mdodd@FreeBSD.org> | 1999-12-06 08:40:59 +0000 |
---|---|---|
committer | mdodd <mdodd@FreeBSD.org> | 1999-12-06 08:40:59 +0000 |
commit | a7e03f2c68bb435ac7339efb3e4867168e80a23e (patch) | |
tree | bbc0e8a5a5a7453c07bc9a6547126666567ad1c3 | |
parent | 4c8ffdfc97267cfaa58e15077345d48104b67bc8 (diff) | |
download | FreeBSD-src-a7e03f2c68bb435ac7339efb3e4867168e80a23e.zip FreeBSD-src-a7e03f2c68bb435ac7339efb3e4867168e80a23e.tar.gz |
Standardize device descriptions so that there is parity between PnP
descriptions and non-PnP descriptions.
-rw-r--r-- | sys/dev/ep/if_ep_isa.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/sys/dev/ep/if_ep_isa.c b/sys/dev/ep/if_ep_isa.c index 28f4fd4..445484b 100644 --- a/sys/dev/ep/if_ep_isa.c +++ b/sys/dev/ep/if_ep_isa.c @@ -73,20 +73,20 @@ const char * ep_isa_match_id (u_int32_t, struct isa_ident *); #define ISA_ID_3C509_TPO 0x506d5095 static struct isa_ident ep_isa_devs[] = { - { ISA_ID_3C509_TP, "3Com EtherLink III (3c509-TP)" }, - { ISA_ID_3C509_BNC, "3Com EtherLink III (3c509-BNC)" }, - { ISA_ID_3C509_COMBO, "3Com EtherLink III (3c509-Combo)" }, - { ISA_ID_3C509_TPO, "3Com EtherLink III (3c509-TPO)" }, + { ISA_ID_3C509_TP, "3Com 3C509-TP EtherLink III" }, + { ISA_ID_3C509_BNC, "3Com 3C509-BNC EtherLink III" }, + { ISA_ID_3C509_COMBO, "3Com 3C509-Combo EtherLink III" }, + { ISA_ID_3C509_TPO, "3Com 3C509-TPO EtherLink III" }, { 0, NULL }, }; static struct isa_pnp_id ep_ids[] = { - { 0x90506d50, NULL }, /* TCM5090 */ - { 0x91506d50, NULL }, /* TCM5091 */ - { 0x94506d50, NULL }, /* TCM5094 */ - { 0x95506d50, NULL }, /* TCM5095 */ - { 0xf780d041, NULL }, /* PNP80f7 */ - { 0, NULL }, + { 0x90506d50, "3Com 3C509B-TP EtherLink III (PnP)" }, /* TCM5090 */ + { 0x91506d50, "3Com 3C509B-BNC EtherLink III (PnP)" },/* TCM5091 */ + { 0x94506d50, "3Com 3C509B-Combo EtherLink III (PnP)" },/* TCM5094 */ + { 0x95506d50, "3Com 3C509B-TPO EtherLink III (PnP)" },/* TCM5095 */ + { 0xf780d041, NULL }, /* PNP80f7 */ + { 0, NULL }, }; /* |