1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * soc-apci-intel-jsl-match.c - tables and support for JSL ACPI enumeration. 4 * 5 * Copyright (c) 2019, Intel Corporation. 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_jsl_machines[] = { 13 { 14 .id = "DLGS7219", 15 .drv_name = "sof_da7219_max98373", 16 .machine_quirk = snd_soc_acpi_codec_list, 17 .sof_fw_filename = "sof-jsl.ri", 18 .sof_tplg_filename = "sof-jsl-da7219.tplg", 19 }, 20 {}, 21 }; 22 EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_jsl_machines); 23 24 MODULE_LICENSE("GPL v2"); 25 MODULE_DESCRIPTION("Intel Common ACPI Match module"); 26