diff options
author | Takashi Iwai <tiwai@suse.de> | 2007-07-27 12:58:06 -0400 |
---|---|---|
committer | Jaroslav Kysela <perex@perex.cz> | 2007-10-16 09:58:10 -0400 |
commit | 2807314d467e7dd929c42050031aabbd28e78f0b (patch) | |
tree | d4d05f61ef8cc1115ae73af900b8012392321caa /sound/pci/hda/Makefile | |
parent | ef5fa1a49fc3b5fe8e734f25fa61bc73ccba344e (diff) |
[ALSA] hda-intel - Add hwdep interface
Added a hwdep interface for each codec (enabled per kconfig).
This interface can be used for reading/writing HD-audio verbs
and other purposes as future extensions.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'sound/pci/hda/Makefile')
-rw-r--r-- | sound/pci/hda/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/sound/pci/hda/Makefile b/sound/pci/hda/Makefile index b2484bbdcc1d..f85c34551ac8 100644 --- a/sound/pci/hda/Makefile +++ b/sound/pci/hda/Makefile | |||
@@ -1,8 +1,8 @@ | |||
1 | snd-hda-intel-objs := hda_intel.o | 1 | snd-hda-intel-y := hda_intel.o |
2 | # since snd-hda-intel is the only driver using hda-codec, | 2 | # since snd-hda-intel is the only driver using hda-codec, |
3 | # merge it into a single module although it was originally | 3 | # merge it into a single module although it was originally |
4 | # designed to be individual modules | 4 | # designed to be individual modules |
5 | snd-hda-intel-objs += hda_codec.o \ | 5 | snd-hda-intel-y += hda_codec.o \ |
6 | hda_generic.o \ | 6 | hda_generic.o \ |
7 | patch_realtek.o \ | 7 | patch_realtek.o \ |
8 | patch_cmedia.o \ | 8 | patch_cmedia.o \ |
@@ -12,8 +12,7 @@ snd-hda-intel-objs += hda_codec.o \ | |||
12 | patch_atihdmi.o \ | 12 | patch_atihdmi.o \ |
13 | patch_conexant.o \ | 13 | patch_conexant.o \ |
14 | patch_via.o | 14 | patch_via.o |
15 | ifdef CONFIG_PROC_FS | 15 | snd-hda-intel-$(CONFIG_PROC_FS) += hda_proc.o |
16 | snd-hda-intel-objs += hda_proc.o | 16 | snd-hda-intel-$(CONFIG_SND_HDA_HWDEP) += hda_hwdep.o |
17 | endif | ||
18 | 17 | ||
19 | obj-$(CONFIG_SND_HDA_INTEL) += snd-hda-intel.o | 18 | obj-$(CONFIG_SND_HDA_INTEL) += snd-hda-intel.o |