aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/hda/hda_patch.h
diff options
context:
space:
mode:
authorTobin Davis <tdavis@dsl-only.net>2006-11-14 06:13:39 -0500
committerJaroslav Kysela <perex@suse.cz>2007-02-09 03:01:26 -0500
commitc9b443d4fdf4e84ce1f40e1f507c313f3a8a8294 (patch)
treee80c5cdbd9f0744cdc5b8d53fa7cb9f2299d9d58 /sound/pci/hda/hda_patch.h
parente6327cf90b1e5e849ac87fbdaee7822a64b6ff56 (diff)
[ALSA] Add Conexant audio support to the HD Audio driver
This driver adds limited support for the Conexant 5045 and 5047 HD Audio codecs. Some issues still need to be resolved. The code is based primarily on code from the Analog Devices AD1981 support and the Realtek ALC260 support. Some code came from the original code developed by Alex Pototskiy (see alsa bugtracker 2485). Signed-off-by: Tobin Davis <tdavis@dsl-only.net> Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'sound/pci/hda/hda_patch.h')
-rw-r--r--sound/pci/hda/hda_patch.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/sound/pci/hda/hda_patch.h b/sound/pci/hda/hda_patch.h
index 0b668793face..5904ecd88a50 100644
--- a/sound/pci/hda/hda_patch.h
+++ b/sound/pci/hda/hda_patch.h
@@ -14,6 +14,8 @@ extern struct hda_codec_preset snd_hda_preset_sigmatel[];
14extern struct hda_codec_preset snd_hda_preset_si3054[]; 14extern struct hda_codec_preset snd_hda_preset_si3054[];
15/* ATI HDMI codecs */ 15/* ATI HDMI codecs */
16extern struct hda_codec_preset snd_hda_preset_atihdmi[]; 16extern struct hda_codec_preset snd_hda_preset_atihdmi[];
17/* Conexant audio codec */
18extern struct hda_codec_preset snd_hda_preset_conexant[];
17 19
18static const struct hda_codec_preset *hda_preset_tables[] = { 20static const struct hda_codec_preset *hda_preset_tables[] = {
19 snd_hda_preset_realtek, 21 snd_hda_preset_realtek,
@@ -22,5 +24,6 @@ static const struct hda_codec_preset *hda_preset_tables[] = {
22 snd_hda_preset_sigmatel, 24 snd_hda_preset_sigmatel,
23 snd_hda_preset_si3054, 25 snd_hda_preset_si3054,
24 snd_hda_preset_atihdmi, 26 snd_hda_preset_atihdmi,
27 snd_hda_preset_conexant,
25 NULL 28 NULL
26}; 29};