From owner-cvs-all@FreeBSD.ORG Sun Oct 1 11:13:00 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org 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 AC2DE16A403; Sun, 1 Oct 2006 11:13:00 +0000 (UTC) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77A7943D49; Sun, 1 Oct 2006 11:13:00 +0000 (GMT) (envelope-from ariff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k91BD0Nr005885; Sun, 1 Oct 2006 11:13:00 GMT (envelope-from ariff@repoman.freebsd.org) Received: (from ariff@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k91BD09L005884; Sun, 1 Oct 2006 11:13:00 GMT (envelope-from ariff) Message-Id: <200610011113.k91BD09L005884@repoman.freebsd.org> From: Ariff Abdullah Date: Sun, 1 Oct 2006 11:13:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/sound/pci/hda hda_reg.h hdac.c hdac.h hdac_private.h hdac_reg.h src/sys/modules/sound/driver/hda Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 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: Sun, 01 Oct 2006 11:13:00 -0000 ariff 2006-10-01 11:13:00 UTC FreeBSD src repository Added files: sys/dev/sound/pci/hda hda_reg.h hdac.c hdac.h hdac_private.h hdac_reg.h sys/modules/sound/driver/hda Makefile Log: Add support for Intel High Definition Audio Controller. This driver make a special guarantee that "playback" works on majority hardwares with minimal or without specific vendor quirk. This driver is a product of collaborative effort made by: Stephane E. Potvin Andrea Bittau Wesley Morgan Daniel Eischen Maxime Guillaud Ariff Abdullah ....and various people from freebsd-multimedia@FreeBSD.org Refer to snd_hda(4) for features and issues. Welcome To HDA. Sponsored by: Defenxis Sdn. Bhd. Revision Changes Path 1.1 +1226 -0 src/sys/dev/sound/pci/hda/hda_reg.h (new) 1.1 +4584 -0 src/sys/dev/sound/pci/hda/hdac.c (new) 1.1 +69 -0 src/sys/dev/sound/pci/hda/hdac.h (new) 1.1 +335 -0 src/sys/dev/sound/pci/hda/hdac_private.h (new) 1.1 +266 -0 src/sys/dev/sound/pci/hda/hdac_reg.h (new) 1.1 +9 -0 src/sys/modules/sound/driver/hda/Makefile (new)