Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 24 Dec 1999 12:33:19 -0500 (EST)
From:      Bryan Liesner <bleez@netaxs.com>
To:        patrick@whetstonelogic.com
Cc:        freebsd-current@FreeBSD.ORG
Subject:   Re: pcm/sbc and Avance Logic ALS-120
Message-ID:  <Pine.BSF.4.20.9912241226130.19515-100000@gravy.kishka.net>
In-Reply-To: <199912241352.IAA00332@p.wl.vg>

next in thread | previous in thread | raw e-mail | index | archive | help
On Fri, 24 Dec 1999 patrick@whetstonelogic.com wrote:

<>unknown0: <PnP Sound Chip> at port 0x220-0x22f irq 5 drq 1,0 on isa0
<>sbc0: <Avance Logic ALS120> at port 0x388-0x38f on isa0
<>sbc0: alloc_resource
<>device_probe_and_attach: sbc0 attach returned 6
<>unknown1: <PnP Sound Chip> at port 0x208-0x20f on isa0
<>unknown2: <PnP Sound Chip> at port 0x330-0x331 irq 9 on isa0

Try this patch.  I had the exact problem with my ALS 110, and I
submitted a patch fixing an error in the device number.  I suspect
that all of the ALS devices end with 0, not 1.  I didn't want to
submit it with the ALS 120 fix because I couldn't test it.

--- /usr/src/sys/dev/sound/isa/sbc.c	Tue Dec 21 20:38:03 1999
+++ sbc.c	Fri Dec 24 12:24:59 1999
@@ -200,13 +200,13 @@
 	{0x42008c0e, "Creative SB AWE64"},		/* CTL0042 */
 	{0x43008c0e, "Creative ViBRA16X"},		/* CTL0043 */
 	{0x44008c0e, "Creative SB AWE64 Gold"},		/* CTL0044 */
 	{0x45008c0e, "Creative SB AWE64"},		/* CTL0045 */
 
 	{0x01100000, "Avance Asound 110"},		/* @@@1001 */
-	{0x01200001, "Avance Logic ALS120"},		/* @@@2001 */
+	{0x01200000, "Avance Logic ALS120"},		/* @@@2001 */
 
 	{0x68187316, "ESS ES1868"},			/* ESS1868 */
 	{0x69187316, "ESS ES1869"},			/* ESS1869 */
 	{0xacb0110e, "ESS ES1869 (Compaq OEM)"},	/* CPQb0ac */
 	{0x79187316, "ESS ES1879"},			/* ESS1879 */
 	{0x88187316, "ESS ES1888"},			/* ESS1888 */



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?Pine.BSF.4.20.9912241226130.19515-100000>