diff options
author | imp <imp@FreeBSD.org> | 2005-07-10 02:00:35 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2005-07-10 02:00:35 +0000 |
commit | 1da3d0e6fa3754a298629936d8622926b47ea465 (patch) | |
tree | c4c3975d2801830ef72138e7c233c42061dfede3 /sys/dev/sn | |
parent | 0cf4212697b43b0db220a1214814a995e8b35821 (diff) | |
download | FreeBSD-src-1da3d0e6fa3754a298629936d8622926b47ea465.zip FreeBSD-src-1da3d0e6fa3754a298629936d8622926b47ea465.tar.gz |
Add a boatload of new device ids, gleaned from the pcmcia-cs-3.2.8
distribution. Add the appropriate devices to the man pages.
Obtained from: pcmcia-cs
Approved by: re (scottl)
Diffstat (limited to 'sys/dev/sn')
-rw-r--r-- | sys/dev/sn/if_sn.c | 3 | ||||
-rw-r--r-- | sys/dev/sn/if_sn_pccard.c | 7 |
2 files changed, 7 insertions, 3 deletions
diff --git a/sys/dev/sn/if_sn.c b/sys/dev/sn/if_sn.c index 665dcb5..b9bd867 100644 --- a/sys/dev/sn/if_sn.c +++ b/sys/dev/sn/if_sn.c @@ -147,7 +147,8 @@ static const char *chip_ids[15] = { NULL, /* 7 */ "SMC91C100", /* 8 */ "SMC91C100FD", - NULL, NULL, NULL, + /* 9 */ "SMC91C110", + NULL, NULL, NULL, NULL, NULL }; diff --git a/sys/dev/sn/if_sn_pccard.c b/sys/dev/sn/if_sn_pccard.c index ce63aaa..7e60815 100644 --- a/sys/dev/sn/if_sn_pccard.c +++ b/sys/dev/sn/if_sn_pccard.c @@ -55,11 +55,14 @@ __FBSDID("$FreeBSD$"); static const struct pccard_product sn_pccard_products[] = { PCMCIA_CARD(DSPSI, XJACK), + PCMCIA_CARD(MOTOROLA, MARINER), PCMCIA_CARD(NEWMEDIA, BASICS), + PCMCIA_CARD(OSITECH, TRUMP_SOD), + PCMCIA_CARD(OSITECH, TRUMP_JOH), PCMCIA_CARD(PSION, GOLDCARD), -#if 0 + PCMCIA_CARD(PSION, NETGLOBAL), + PCMCIA_CARD(PSION, NETGLOBAL2), PCMCIA_CARD(SMC, 8020BT), -#endif PCMCIA_CARD(SMC, SMC91C96), { NULL } }; |