1 // SPDX-License-Identifier: GPL-2.0-only 2 // Copyright (c) 2018, Intel Corporation. 3 4 /* 5 * soc-acpi-intel-hda-match.c - tables and support for HDA+ACPI enumeration. 6 * 7 */ 8 9 #include <sound/soc-acpi.h> 10 #include <sound/soc-acpi-intel-match.h> 11 12 struct snd_soc_acpi_mach snd_soc_acpi_intel_hda_machines[] = { 13 { 14 /* .id is not used in this file */ 15 .drv_name = "skl_hda_dsp_generic", 16 17 /* .fw_filename is dynamically set in skylake driver */ 18 19 .sof_tplg_filename = "sof-hda-generic.tplg", 20 21 /* 22 * .machine_quirk and .quirk_data are not used here but 23 * can be used if we need a more complicated machine driver 24 * combining HDA+other device (e.g. DMIC). 25 */ 26 }, 27 {}, 28 }; 29 EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_hda_machines); 30 31 MODULE_LICENSE("GPL v2"); 32 MODULE_DESCRIPTION("Intel Common ACPI Match module"); 33