diff options
author | deischen <deischen@FreeBSD.org> | 1999-10-03 22:25:19 +0000 |
---|---|---|
committer | deischen <deischen@FreeBSD.org> | 1999-10-03 22:25:19 +0000 |
commit | 22eb72a42c5f9866063392645515c1a7c4406150 (patch) | |
tree | 2b4cbfa93ce965c55b8160e5ee88baf9758bacea /sys/isa/sio.c | |
parent | f53ad097bbea091dba9cb5af1e44f111feda2101 (diff) | |
download | FreeBSD-src-22eb72a42c5f9866063392645515c1a7c4406150.zip FreeBSD-src-22eb72a42c5f9866063392645515c1a7c4406150.tar.gz |
Change pnp ID for the SupraExpress 56i Sp V.90 modem (logical ID
0x8024b04e) so that the cards description is used instead of overriding
it. While I'm here, add an ID for the SUP2080 and the SUP2030.
PR: kern/13983
Submitted by: Kurt D. Zeilenga <Kurt@OpenLDAP.Org> (SUP2030)
dfr (rest of change)
Reviewed by: dfr
Diffstat (limited to 'sys/isa/sio.c')
-rw-r--r-- | sys/isa/sio.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/isa/sio.c b/sys/isa/sio.c index c14f04a..5c62be1 100644 --- a/sys/isa/sio.c +++ b/sys/isa/sio.c @@ -567,8 +567,10 @@ static struct isa_pnp_id sio_ids[] = { {0x0205d041, "Multiport serial device (non-intelligent 16550)"}, /* PNP0502 */ {0x1005d041, "Generic IRDA-compatible device"}, /* PNP0510 */ {0x1105d041, "Generic IRDA-compatible device"}, /* PNP0511 */ - {0x31307256, "USR3031"}, /* USR3031 */ - {0x8024b04e, "SupraExpress 56i Sp V.90"}, + {0x30207256, NULL}, /* USR2030 */ + {0x31307256, NULL}, /* USR3031 */ + {0x8020b04e, NULL}, /* SUP2080 */ + {0x8024b04e, NULL}, /* SUP2480 */ {0} }; |