diff options
author | imp <imp@FreeBSD.org> | 2005-07-09 01:30:32 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2005-07-09 01:30:32 +0000 |
commit | 1dd8415bd271c2d081ddee9781ed8b310da3844a (patch) | |
tree | b56e70fb7c585b93a99bfd1ba2c1af576fdd5d55 /sys/dev/sn | |
parent | 514091a2b5c32901dea7cdc9ca3f37f43836f8d0 (diff) | |
download | FreeBSD-src-1dd8415bd271c2d081ddee9781ed8b310da3844a.zip FreeBSD-src-1dd8415bd271c2d081ddee9781ed8b310da3844a.tar.gz |
Noticed that NetBSD's sm driver has the PSION GOLDCARD listed, so list
that since I can't test it directly. The driver also lists the EM1144
as being supported, but in reality it isn't. The EM1144-T,
{XJ,CC}{3288,3336} have the SMC chips in them, but aren't conformant MFC
cards, so they need their own driver.
Also, it does little harm to list the 8020BT, so remove #if 0.
Approved by: re (scottl)
Diffstat (limited to 'sys/dev/sn')
-rw-r--r-- | sys/dev/sn/if_sn_pccard.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dev/sn/if_sn_pccard.c b/sys/dev/sn/if_sn_pccard.c index a1cc137..7856770 100644 --- a/sys/dev/sn/if_sn_pccard.c +++ b/sys/dev/sn/if_sn_pccard.c @@ -56,10 +56,9 @@ __FBSDID("$FreeBSD$"); static const struct pccard_product sn_pccard_products[] = { PCMCIA_CARD(DSPSI, XJACK), PCMCIA_CARD(NEWMEDIA, BASICS), - PCMCIA_CARD(SMC, SMC91C96), -#if 0 + PCMCIA_CARD(PSION, GOLDCARD), PCMCIA_CARD(SMC, 8020BT), -#endif + PCMCIA_CARD(SMC, SMC91C96), { NULL } }; |