diff options
author | peter <peter@FreeBSD.org> | 2000-01-23 13:17:03 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2000-01-23 13:17:03 +0000 |
commit | bd4781a52d9bcda81b28e542702e4779eafcd823 (patch) | |
tree | 7bb449d3a19aa13575fa8a5e431439c162fa76aa | |
parent | 57a0551ffebef805a341f9e693f83a1dba1597b7 (diff) | |
download | FreeBSD-src-bd4781a52d9bcda81b28e542702e4779eafcd823.zip FreeBSD-src-bd4781a52d9bcda81b28e542702e4779eafcd823.tar.gz |
Note the PnP id's for the NMX2210 next to the id's where they are used.
The pnpbios doesn't supply a description in the case we've seen so
supply one.
-rw-r--r-- | sys/dev/sound/isa/mss.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/sound/isa/mss.c b/sys/dev/sound/isa/mss.c index 0906d2e..c7db5b8 100644 --- a/sys/dev/sound/isa/mss.c +++ b/sys/dev/sound/isa/mss.c @@ -1333,7 +1333,7 @@ static struct isa_pnp_id pnpmss_ids[] = { {0x1110d315, "ENSONIQ SoundscapeVIVO"}, /* ENS1011 */ {0x1093143e, "OPTi931"}, /* OPT9310 */ {0x5092143e, "OPTi925"}, /* OPT9250 XXX guess */ - {0x1022b839, NULL}, /* NMX2210 - non-ac97 neomagic 256av */ + {0x1022b839, "Neomagic 256AV (non-ac97)"}, /* NMX2210 */ #if 0 {0x0000561e, "GusPnP"}, /* GRV0000 */ #endif @@ -1392,10 +1392,11 @@ pnpmss_attach(device_t dev) mss->bd_id = MD_OPTI925; break; - case 0x1022b839: + case 0x1022b839: /* NMX2210 */ mss->io_rid = 1; mss->bd_id = MD_CS42XX; break; + #if 0 case 0x0000561e: /* GRV0000 */ mss->bd_flags |= BD_F_MSS_OFFSET; |