summaryrefslogtreecommitdiffstats
path: root/sys/dev
diff options
context:
space:
mode:
authorjoel <joel@FreeBSD.org>2007-05-19 10:53:01 +0000
committerjoel <joel@FreeBSD.org>2007-05-19 10:53:01 +0000
commite62bc55d9bae625a6f7ae2ce0b03daf0e9df1cb1 (patch)
tree4cb9e4205ca7761d57b9450b115f658159244705 /sys/dev
parent035fcbcbfc0d19a2eced65d2b8fc0fac638856ec (diff)
downloadFreeBSD-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')
-rw-r--r--sys/dev/sound/isa/mss.c2
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;
OpenPOWER on IntegriCloud