From owner-freebsd-current Fri Dec 24 9:33:36 1999 Delivered-To: freebsd-current@freebsd.org Received: from mail.netaxs.com (mail.netaxs.com [207.8.186.26]) by hub.freebsd.org (Postfix) with ESMTP id CD28215252 for ; Fri, 24 Dec 1999 09:33:30 -0800 (PST) (envelope-from bleez@netaxs.com) Received: from dyn-16.blackbox-2.netaxs.com (dyn-16.blackbox-2.netaxs.com [207.106.60.16]) by mail.netaxs.com (8.8.7/8.8.5) with ESMTP id MAA23427; Fri, 24 Dec 1999 12:33:20 -0500 (EST) Date: Fri, 24 Dec 1999 12:33:19 -0500 (EST) From: Bryan Liesner X-Sender: root@gravy.kishka.net Reply-To: Bryan Liesner To: patrick@whetstonelogic.com Cc: freebsd-current@FreeBSD.ORG Subject: Re: pcm/sbc and Avance Logic ALS-120 In-Reply-To: <199912241352.IAA00332@p.wl.vg> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 24 Dec 1999 patrick@whetstonelogic.com wrote: <>unknown0: at port 0x220-0x22f irq 5 drq 1,0 on isa0 <>sbc0: at port 0x388-0x38f on isa0 <>sbc0: alloc_resource <>device_probe_and_attach: sbc0 attach returned 6 <>unknown1: at port 0x208-0x20f on isa0 <>unknown2: 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