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 0000000..cf6abce --- /dev/null +++ b/sound/pci/hda/hda_patch.h @@ -0,0 +1,17 @@ +/* + * 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 +}; |