From owner-freebsd-bugs Fri Jan 29 08:10:03 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA02819 for freebsd-bugs-outgoing; Fri, 29 Jan 1999 08:10:03 -0800 (PST) (envelope-from owner-freebsd-bugs@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA02764 for ; Fri, 29 Jan 1999 08:10:00 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id IAA06529; Fri, 29 Jan 1999 08:10:00 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from hstudb.cs.uit.no (hstudb.cs.UiT.No [129.242.16.146]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA02452 for ; Fri, 29 Jan 1999 08:07:30 -0800 (PST) (envelope-from espensk@hstudb.cs.uit.no) Received: (from espensk@localhost) by hstudb.cs.uit.no (8.9.2/8.9.1) id RAA01022; Fri, 29 Jan 1999 17:07:18 +0100 (CET) (envelope-from espensk) Message-Id: <199901291607.RAA01022@hstudb.cs.uit.no> Date: Fri, 29 Jan 1999 17:07:18 +0100 (CET) From: espensk@stud.cs.uit.no To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: i386/9777: Generic AD1816 sound suport in Luigi's pcm driver Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 9777 >Category: i386 >Synopsis: Generic AD1816 sound suport in Luigi's pcm driver >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Jan 29 08:10:00 PST 1999 >Closed-Date: >Last-Modified: >Originator: Espen Skoglund >Release: FreeBSD 3.0-STABLE i386 >Organization: University of Tromsų >Environment: >Description: Luigi's pcm sound driver does not support generic AD1816 based sound cards. (Like the one found for instance on-board in HP Kayaks.) >How-To-Repeat: >Fix: The following patch to /usr/src/sys/i386/isa/snd/ad1848.c fixes the problem: ================================================================ *** ad1848.c~ Fri Jan 29 16:12:27 1999 --- ad1848.c Fri Jan 29 15:28:29 1999 *************** *** 1466,1471 **** --- 1466,1473 ---- s = "Terratec Soundsystem BASE 1"; else if (vend_id == 0x50719304) s = "Generic AD1815"; + else if (vend_id == 0x81719304) + s = "Generic AD1816"; if (s) { struct pnp_cinfo d; read_pnp_parms(&d, 0); *************** *** 1496,1502 **** snddev_last_probed = &tmp_d; /* AD1816 */ ! if (vend_id == 0x1114b250 || vend_id == 0x50719304) { dev->id_alive = 16; /* number of io ports ? */ tmp_d = mss_op_desc; /* copy it */ --- 1498,1505 ---- snddev_last_probed = &tmp_d; /* AD1816 */ ! if (vend_id == 0x1114b250 || vend_id == 0x50719304 || ! vend_id == 0x81719304) { dev->id_alive = 16; /* number of io ports ? */ tmp_d = mss_op_desc; /* copy it */ >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message