diff options
Diffstat (limited to 'sound/pci/hda/hda_patch.h')
-rw-r--r-- | sound/pci/hda/hda_patch.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sound/pci/hda/hda_patch.h b/sound/pci/hda/hda_patch.h new file mode 100644 index 000000000000..cf6abce42bc9 --- /dev/null +++ b/sound/pci/hda/hda_patch.h | |||
@@ -0,0 +1,17 @@ | |||
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[]; | ||
11 | |||
12 | static const struct hda_codec_preset *hda_preset_tables[] = { | ||
13 | snd_hda_preset_realtek, | ||
14 | snd_hda_preset_cmedia, | ||
15 | snd_hda_preset_analog, | ||
16 | NULL | ||
17 | }; | ||