diff options
| author | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2000-12-09 04:25:07 +0000 |
|---|---|---|
| committer | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2000-12-09 04:25:07 +0000 |
| commit | 8297c2fc98af57ace9ab46b91d34a123c3963792 (patch) | |
| tree | dadf22fbe1a95439ec02949ba3aaf7c684bc5f50 /sys/dev/ep | |
| parent | bdc49e9b63d46aac18c2ca6a7fe8c643dbadec43 (diff) | |
Notes
Diffstat (limited to 'sys/dev/ep')
| -rw-r--r-- | sys/dev/ep/if_ep_isa.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sys/dev/ep/if_ep_isa.c b/sys/dev/ep/if_ep_isa.c index ae7dd26d1704..bccfc32cd19d 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 }, }; |
