diff options
author | Takashi Iwai <tiwai@suse.de> | 2007-07-27 20:58:06 +0400 |
---|---|---|
committer | Jaroslav Kysela <perex@perex.cz> | 2007-10-16 17:58:10 +0400 |
commit | 2807314d467e7dd929c42050031aabbd28e78f0b (patch) | |
tree | d4d05f61ef8cc1115ae73af900b8012392321caa /sound/pci/hda/hda_codec.c | |
parent | ef5fa1a49fc3b5fe8e734f25fa61bc73ccba344e (diff) | |
download | linux-2807314d467e7dd929c42050031aabbd28e78f0b.tar.xz |
[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/hda_codec.c')
-rw-r--r-- | sound/pci/hda/hda_codec.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sound/pci/hda/hda_codec.c b/sound/pci/hda/hda_codec.c index a05db2f214bd..e7843ffeeb2f 100644 --- a/sound/pci/hda/hda_codec.c +++ b/sound/pci/hda/hda_codec.c @@ -31,6 +31,7 @@ #include <sound/tlv.h> #include <sound/initval.h> #include "hda_local.h" +#include <sound/hda_hwdep.h> /* @@ -594,6 +595,9 @@ int __devinit snd_hda_codec_new(struct hda_bus *bus, unsigned int codec_addr, init_unsol_queue(bus); snd_hda_codec_proc_new(codec); +#ifdef CONFIG_SND_HDA_HWDEP + snd_hda_create_hwdep(codec); +#endif sprintf(component, "HDA:%08x", codec->vendor_id); snd_component_add(codec->bus->card, component); |