diff options
author | ariff <ariff@FreeBSD.org> | 2006-10-01 11:13:00 +0000 |
---|---|---|
committer | ariff <ariff@FreeBSD.org> | 2006-10-01 11:13:00 +0000 |
commit | 621cbf8b7de90aa1709659cf401de47fa1070776 (patch) | |
tree | d9eb050e7b9ceb54dde425d7806ef2a6e3ae2760 /sys/modules | |
parent | 04f38ef6393ec11d5a7404a6288ed9eb967d1a93 (diff) | |
download | FreeBSD-src-621cbf8b7de90aa1709659cf401de47fa1070776.zip FreeBSD-src-621cbf8b7de90aa1709659cf401de47fa1070776.tar.gz |
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 <sepotvin@videotron.ca>
Andrea Bittau <a.bittau@cs.ucl.ac.uk>
Wesley Morgan <morganw@chemikals.org>
Daniel Eischen <deischen@FreeBSD.org>
Maxime Guillaud <bsd-ports@mguillaud.net>
Ariff Abdullah <ariff@FreeBSD.org>
....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.
Diffstat (limited to 'sys/modules')
-rw-r--r-- | sys/modules/sound/driver/hda/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/modules/sound/driver/hda/Makefile b/sys/modules/sound/driver/hda/Makefile new file mode 100644 index 0000000..8508b5d --- /dev/null +++ b/sys/modules/sound/driver/hda/Makefile @@ -0,0 +1,9 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../../dev/sound/pci/hda + +KMOD= snd_hda +SRCS= device_if.h bus_if.h pci_if.h channel_if.h mixer_if.h +SRCS+= hdac.c hdac_private.h hdac_reg.h hda_reg.h hdac.h + +.include <bsd.kmod.mk> |