Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * HDA Patches - included by hda_codec.c |
| 3 | */ |
| 4 | |
| 5 | /* Realtek codecs */ |
| 6 | extern struct hda_codec_preset snd_hda_preset_realtek[]; |
| 7 | /* C-Media codecs */ |
| 8 | extern struct hda_codec_preset snd_hda_preset_cmedia[]; |
| 9 | /* Analog Devices codecs */ |
| 10 | extern struct hda_codec_preset snd_hda_preset_analog[]; |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 11 | /* SigmaTel codecs */ |
| 12 | extern struct hda_codec_preset snd_hda_preset_sigmatel[]; |
Sasha Khapyorsky | b65f824 | 2005-08-11 11:18:38 +0200 | [diff] [blame] | 13 | /* SiLabs 3054/3055 modem codecs */ |
| 14 | extern struct hda_codec_preset snd_hda_preset_si3054[]; |
Felix Kuehling | 778b6e1 | 2006-05-17 11:22:21 +0200 | [diff] [blame] | 15 | /* ATI HDMI codecs */ |
| 16 | extern struct hda_codec_preset snd_hda_preset_atihdmi[]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | |
| 18 | static const struct hda_codec_preset *hda_preset_tables[] = { |
| 19 | snd_hda_preset_realtek, |
| 20 | snd_hda_preset_cmedia, |
| 21 | snd_hda_preset_analog, |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 22 | snd_hda_preset_sigmatel, |
Sasha Khapyorsky | b65f824 | 2005-08-11 11:18:38 +0200 | [diff] [blame] | 23 | snd_hda_preset_si3054, |
Felix Kuehling | 778b6e1 | 2006-05-17 11:22:21 +0200 | [diff] [blame] | 24 | snd_hda_preset_atihdmi, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | NULL |
| 26 | }; |