diff options
author | nyan <nyan@FreeBSD.org> | 2000-12-09 04:25:07 +0000 |
---|---|---|
committer | nyan <nyan@FreeBSD.org> | 2000-12-09 04:25:07 +0000 |
commit | afb8ae41f356193b1507a6a4fda4738b1f2549ae (patch) | |
tree | 147a0e741075ca517edddc021ead551809a7a7d7 | |
parent | bdb8230400246e934e356cb591a51e4d7393757c (diff) | |
download | FreeBSD-src-afb8ae41f356193b1507a6a4fda4738b1f2549ae.zip FreeBSD-src-afb8ae41f356193b1507a6a4fda4738b1f2549ae.tar.gz |
Fixed to support 3Com 3C569B for PC-98.
Submitted by: "Hirokazu WATANABE" <gwna@geocities.co.jp>
-rw-r--r-- | sys/dev/ep/if_ep_isa.c | 8 | ||||
-rw-r--r-- | sys/pc98/conf/GENERIC.hints | 4 |
2 files changed, 8 insertions, 4 deletions
diff --git a/sys/dev/ep/if_ep_isa.c b/sys/dev/ep/if_ep_isa.c index ae7dd26..bccfc32 100644 --- a/sys/dev/ep/if_ep_isa.c +++ b/sys/dev/ep/if_ep_isa.c @@ -71,6 +71,10 @@ const char * ep_isa_match_id (u_int32_t, struct isa_ident *); #define ISA_ID_3C509_COMBO 0x506d5094 #define ISA_ID_3C509_TPO 0x506d5095 #define ISA_ID_3C509_TPC 0x506d5098 +#ifdef PC98 +#define ISA_ID_3C569B_COMBO 0x506d5694 +#define ISA_ID_3C569B_TPO 0x506d5695 +#endif static struct isa_ident ep_isa_devs[] = { { ISA_ID_3C509_TP, "3Com 3C509-TP EtherLink III" }, @@ -78,6 +82,10 @@ static struct isa_ident ep_isa_devs[] = { { ISA_ID_3C509_COMBO, "3Com 3C509-Combo EtherLink III" }, { ISA_ID_3C509_TPO, "3Com 3C509-TPO EtherLink III" }, { ISA_ID_3C509_TPC, "3Com 3C509-TPC EtherLink III" }, +#ifdef PC98 + { ISA_ID_3C569B_COMBO, "3Com 3C569B-J-Combo EtherLink III" }, + { ISA_ID_3C569B_TPO, "3Com 3C569B-J-TPO EtherLink III" }, +#endif { 0, NULL }, }; diff --git a/sys/pc98/conf/GENERIC.hints b/sys/pc98/conf/GENERIC.hints index b0924e3..e76272e 100644 --- a/sys/pc98/conf/GENERIC.hints +++ b/sys/pc98/conf/GENERIC.hints @@ -267,10 +267,6 @@ hint.fe.1.at="isa" hint.fe.1.port="0x73d0" hint.fe.1.irq="5" -hint.ep.0.at="isa" -hint.ep.0.port="0x40d0" -hint.ep.0.irq="3" - hint.lnc.0.at="isa" hint.lnc.0.port="0x03d0" hint.lnc.0.irq="6" |