Date: Tue, 7 Dec 1999 02:41:50 +0100 (CET) From: Oliver Fromme <olli@dorifer.heim3.tu-clausthal.de> To: freebsd-current@FreeBSD.ORG Subject: Re: pcm: Soundcard not recognized anymore Message-ID: <199912070141.CAA24259@dorifer.heim3.tu-clausthal.de>
next in thread | raw e-mail | index | archive | help
(Replying to myself...) Oliver Fromme wrote in list.freebsd-current: > I have today upgraded a machine from some 3.1-stable to the > latest -current snapshot (19991204). Now the ISA PnP soundcard > doesn't work anymore (it worked fine before, using the pcm > driver). It is an Avance Logic ALS100+ card. The following patch makes the card work again in -current: --- dev/sound/isa/sb.c.orig Tue Dec 7 02:30:19 1999 +++ dev/sound/isa/sb.c Tue Dec 7 02:30:19 1999 @@ -1261,6 +1261,10 @@ u_int32_t logical_id = isa_get_logicalid(dev); switch(logical_id) { + case 0x01000000: /* @@@0001 */ + s = "Avance Asound 100"; + break; + case 0x01100000: /* @@@1001 */ s = "Avance Asound 110"; break; Can someone please just commit this trivial fix, or shall I submit a PR? Regards Oliver -- Oliver Fromme, Leibnizstr. 18/61, 38678 Clausthal, Germany (Info: finger userinfo:olli@dorifer.heim3.tu-clausthal.de) "In jedem Stück Kohle wartet ein Diamant auf seine Geburt" (Terry Pratchett) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199912070141.CAA24259>