mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-14 04:41:26 +00:00
18 lines
433 B
C
18 lines
433 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[];
|
||
|
|
||
|
static const struct hda_codec_preset *hda_preset_tables[] = {
|
||
|
snd_hda_preset_realtek,
|
||
|
snd_hda_preset_cmedia,
|
||
|
snd_hda_preset_analog,
|
||
|
NULL
|
||
|
};
|