From owner-svn-doc-head@FreeBSD.ORG Sun Dec 2 19:59:31 2012 Return-Path: Delivered-To: svn-doc-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8D839350; Sun, 2 Dec 2012 19:59:31 +0000 (UTC) (envelope-from gavin@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 5819E8FC13; Sun, 2 Dec 2012 19:59:31 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qB2JxVoL048898; Sun, 2 Dec 2012 19:59:31 GMT (envelope-from gavin@svn.freebsd.org) Received: (from gavin@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qB2JxV1P048897; Sun, 2 Dec 2012 19:59:31 GMT (envelope-from gavin@svn.freebsd.org) Message-Id: <201212021959.qB2JxV1P048897@svn.freebsd.org> From: Gavin Atkinson Date: Sun, 2 Dec 2012 19:59:31 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r40249 - head/en_US.ISO8859-1/books/arch-handbook/sound X-SVN-Group: doc-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Dec 2012 19:59:31 -0000 Author: gavin Date: Sun Dec 2 19:59:30 2012 New Revision: 40249 URL: http://svnweb.freebsd.org/changeset/doc/40249 Log: Update the arch-handbook chapter on sound slightly to reflect PCI devices are more common than ISA devices, and that USB devices exist. Also, change a line suggesting device driver writers email cg@ with a recommendation they contact the FreeBSD-multimedia@ mailing list - Cameron passed away several years ago. Approved by: bcr (mentor) Modified: head/en_US.ISO8859-1/books/arch-handbook/sound/chapter.xml Modified: head/en_US.ISO8859-1/books/arch-handbook/sound/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/arch-handbook/sound/chapter.xml Sun Dec 2 18:37:32 2012 (r40248) +++ head/en_US.ISO8859-1/books/arch-handbook/sound/chapter.xml Sun Dec 2 19:59:30 2012 (r40249) @@ -82,16 +82,16 @@ Files - All the relevant code currently (FreeBSD 4.4) lives in + All the relevant code lives in /usr/src/sys/dev/sound/, except for the public ioctl interface definitions, found in /usr/src/sys/sys/soundcard.h Under /usr/src/sys/dev/sound/, the pcm/ directory holds the central code, - while the isa/ and - pci/ directories have the drivers for ISA - and PCI boards. + while the pci/, isa/ + and usb/ directories have the drivers + for PCI and ISA boards, and for USB audio devices. @@ -527,7 +527,7 @@ channel_resetdone(), and channel_notify() are for special purposes and should not be implemented in a driver without discussing - it with the authorities (&a.cg;). + it on the &a.multimedia;. channel_setdir() is deprecated.