diff options
author | joel <joel@FreeBSD.org> | 2007-05-19 10:53:01 +0000 |
---|---|---|
committer | joel <joel@FreeBSD.org> | 2007-05-19 10:53:01 +0000 |
commit | e62bc55d9bae625a6f7ae2ce0b03daf0e9df1cb1 (patch) | |
tree | 4cb9e4205ca7761d57b9450b115f658159244705 /sys/dev/sound/isa | |
parent | 035fcbcbfc0d19a2eced65d2b8fc0fac638856ec (diff) | |
download | FreeBSD-src-e62bc55d9bae625a6f7ae2ce0b03daf0e9df1cb1.zip FreeBSD-src-e62bc55d9bae625a6f7ae2ce0b03daf0e9df1cb1.tar.gz |
Fix detection of PC-9821 V166 internal sound card.
PR: kern/105600
Submitted by: rotus <rotus@takamanohara.dyndns.org>
Approved by: ariff
Diffstat (limited to 'sys/dev/sound/isa')
-rw-r--r-- | sys/dev/sound/isa/mss.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/sound/isa/mss.c b/sys/dev/sound/isa/mss.c index 58abbbe..ae14994 100644 --- a/sys/dev/sound/isa/mss.c +++ b/sys/dev/sound/isa/mss.c @@ -1320,7 +1320,7 @@ mss_probe(device_t dev) goto mss_probe_end; } tmp &= 0x3f; - if (!(tmp == 0x04 || tmp == 0x0f || tmp == 0x00)) { + if (!(tmp == 0x04 || tmp == 0x0f || tmp == 0x00 || tmp == 0x05)) { BVDDB(printf("No MSS signature detected on port 0x%lx (0x%x)\n", rman_get_start(mss->io_base), tmpx)); goto no; |