From owner-cvs-all@FreeBSD.ORG Mon Aug 18 14:28:25 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 272FE37B401; Mon, 18 Aug 2003 14:28:25 -0700 (PDT) Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9ABE943FAF; Mon, 18 Aug 2003 14:28:24 -0700 (PDT) (envelope-from hodson@puma.icir.org) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.12.8p1/8.12.3) with ESMTP id h7ILSGTU001132; Mon, 18 Aug 2003 14:28:18 -0700 (PDT) (envelope-from hodson@puma.icir.org) Message-Id: <200308182128.h7ILSGTU001132@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: Wilko Bulte From: Orion Hodson In-Reply-To: Your message of "Mon, 18 Aug 2003 21:59:20 +0200." <20030818195920.GA1305@freebie.xs4all.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 18 Aug 2003 14:28:16 -0700 Sender: hodson@icir.org cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/dev/sound/pci ich.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Aug 2003 21:28:25 -0000 /-- Wilko Bulte wrote: | wkb@freebie ~: dmesg | grep pcm | pcm0: port | 0xdf4c-0xdf4f,0xdf7c-0xdf7f,0xdf50-0xdf5f,0xdf60-0xdf6f,0xde80-0xdebf irq 11 | at device 13.0 on pci2 | pcm1: port 0xee80-0xeebf,0xe800-0xe8ff mem | 0xfebff400-0xfebff4ff,0xfebff800-0xfebff9ff irq 10 at device 31.5 on pci0 | pcm1: (id=0x41445375) | | I'm wondering about the ac97 codec message? The ac97 code has a table of codecs that provide the name and optionally a function pointer to a vendor specific initialization routine. On RELENG_4, the AD1985 does not have an entry, so the codec is indicated as "unknown" with the relevant codec id. The latter is useful for diagnostics. If you want a short-term fix you can edit the codec table in ${SRC}/sys/dev/sound/pcm/ac97.c. We're about due for a syncing of the ac97 codec between RELENG_4 and HEAD, which would fix the message for this and quite a few other codecs. - Orion