2005-04-16 18:20:36 -04:00
|
|
|
/*
|
|
|
|
* 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[];
|
2005-04-13 08:45:30 -04:00
|
|
|
/* SigmaTel codecs */
|
|
|
|
extern struct hda_codec_preset snd_hda_preset_sigmatel[];
|
2005-08-11 05:18:38 -04:00
|
|
|
/* SiLabs 3054/3055 modem codecs */
|
|
|
|
extern struct hda_codec_preset snd_hda_preset_si3054[];
|
2006-05-17 05:22:21 -04:00
|
|
|
/* ATI HDMI codecs */
|
|
|
|
extern struct hda_codec_preset snd_hda_preset_atihdmi[];
|
2006-11-14 06:13:39 -05:00
|
|
|
/* Conexant audio codec */
|
|
|
|
extern struct hda_codec_preset snd_hda_preset_conexant[];
|
2006-11-29 09:29:40 -05:00
|
|
|
/* VIA codecs */
|
|
|
|
extern struct hda_codec_preset snd_hda_preset_via[];
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
static const struct hda_codec_preset *hda_preset_tables[] = {
|
2007-07-27 13:15:54 -04:00
|
|
|
#ifdef CONFIG_SND_HDA_CODEC_REALTEK
|
2005-04-16 18:20:36 -04:00
|
|
|
snd_hda_preset_realtek,
|
2007-07-27 13:15:54 -04:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_SND_HDA_CODEC_CMEDIA
|
2005-04-16 18:20:36 -04:00
|
|
|
snd_hda_preset_cmedia,
|
2007-07-27 13:15:54 -04:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_SND_HDA_CODEC_ANALOG
|
2005-04-16 18:20:36 -04:00
|
|
|
snd_hda_preset_analog,
|
2007-07-27 13:15:54 -04:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_SND_HDA_CODEC_SIGMATEL
|
2005-04-13 08:45:30 -04:00
|
|
|
snd_hda_preset_sigmatel,
|
2007-07-27 13:15:54 -04:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_SND_HDA_CODEC_SI3054
|
2005-08-11 05:18:38 -04:00
|
|
|
snd_hda_preset_si3054,
|
2007-07-27 13:15:54 -04:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_SND_HDA_CODEC_ATIHDMI
|
2006-05-17 05:22:21 -04:00
|
|
|
snd_hda_preset_atihdmi,
|
2007-07-27 13:15:54 -04:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_SND_HDA_CODEC_CONEXANT
|
2006-11-14 06:13:39 -05:00
|
|
|
snd_hda_preset_conexant,
|
2007-07-27 13:15:54 -04:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_SND_HDA_CODEC_VIA
|
2006-11-29 09:29:40 -05:00
|
|
|
snd_hda_preset_via,
|
2007-07-27 13:15:54 -04:00
|
|
|
#endif
|
2005-04-16 18:20:36 -04:00
|
|
|
NULL
|
|
|
|
};
|