c9b443d4fd
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>
29 lines
870 B
C
29 lines
870 B
C
/*
|
|
* HDA Patches - included by hda_codec.c
|
|
*/
|
|
|
|
/* Realtek codecs */
|
|
extern struct hda_codec_preset snd_hda_preset_realtek[];
|
|
/* C-Media codecs */
|
|
extern struct hda_codec_preset snd_hda_preset_cmedia[];
|
|
/* Analog Devices codecs */
|
|
extern struct hda_codec_preset snd_hda_preset_analog[];
|
|
/* SigmaTel codecs */
|
|
extern struct hda_codec_preset snd_hda_preset_sigmatel[];
|
|
/* SiLabs 3054/3055 modem codecs */
|
|
extern struct hda_codec_preset snd_hda_preset_si3054[];
|
|
/* ATI HDMI codecs */
|
|
extern struct hda_codec_preset snd_hda_preset_atihdmi[];
|
|
/* Conexant audio codec */
|
|
extern struct hda_codec_preset snd_hda_preset_conexant[];
|
|
|
|
static const struct hda_codec_preset *hda_preset_tables[] = {
|
|
snd_hda_preset_realtek,
|
|
snd_hda_preset_cmedia,
|
|
snd_hda_preset_analog,
|
|
snd_hda_preset_sigmatel,
|
|
snd_hda_preset_si3054,
|
|
snd_hda_preset_atihdmi,
|
|
snd_hda_preset_conexant,
|
|
NULL
|
|
};
|