Fix detection of PC-9821 V166 internal sound card.

PR:		kern/105600
Submitted by:	rotus <rotus@takamanohara.dyndns.org>
Approved by:	ariff
This commit is contained in:
Joel Dahl 2007-05-19 10:53:01 +00:00
parent 40ca137bbd
commit ecdbb0d42b

View File

@ -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;