Date: Tue, 7 Dec 1999 22:24:15 +0100 From: Frank Nobis <fn@radio-do.de> To: Thomas Schuerger <schuerge@wjpserver.CS.Uni-SB.DE>, freebsd-current@FreeBSD.ORG Subject: Re: AWE64 problems Message-ID: <19991207222414.A555@radio-do.de> In-Reply-To: <199912071743.SAA12567@wjpserver.cs.uni-sb.de> References: <199912071743.SAA12567@wjpserver.cs.uni-sb.de>
next in thread | previous in thread | raw e-mail | index | archive | help
On Tue, Dec 07, 1999 at 06:43:55PM +0100, Thomas Schuerger wrote: > Hi! > > I am still having problems getting my AWE64 soundcard to > work with the newpcm driver (the "old" pcm driver worked > fine). > > Any ideas what I am doing wrong? Are there more people > having problems with their AWE64? > > Any help is appreciated! I had the same problem with my AWE64. An older kernel @(#)FreeBSD 4.0-CURRENT #1: Sun Nov 28 18:54:55 CET 1999 was working correct with "device pcm" and "device sbc" I dived into the source and put some printf's. I noticed that the sbc_attach never got called. This is my patch. Now it is working again, but I don't have a clue if I did it the right way. --- sbc.c.orig Mon Dec 6 19:26:31 1999 +++ sbc.c Tue Dec 7 22:15:25 1999 @@ -110,7 +110,7 @@ if (error) return error; else - return -100; + return -1; } static int Frank -- ~/.signature not found: wellknown error 42 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?19991207222414.A555>