hda_patch.h 539 Bytes
Newer Older
Linus Torvalds's avatar
Linus Torvalds committed
1 2 3 4 5 6 7 8 9 10
/*
 * 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[];
Matt's avatar
Matt committed
11 12
/* SigmaTel codecs */
extern struct hda_codec_preset snd_hda_preset_sigmatel[];
Linus Torvalds's avatar
Linus Torvalds committed
13 14 15 16 17

static const struct hda_codec_preset *hda_preset_tables[] = {
	snd_hda_preset_realtek,
	snd_hda_preset_cmedia,
	snd_hda_preset_analog,
Matt's avatar
Matt committed
18
	snd_hda_preset_sigmatel,
Linus Torvalds's avatar
Linus Torvalds committed
19 20
	NULL
};