25 lines · c
1// SPDX-License-Identifier: GPL-2.0-only2// 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 12struct 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 .sof_tplg_filename = "sof-hda-generic", /* the tplg suffix is added at run time */17 .tplg_quirk_mask = SND_SOC_ACPI_TPLG_INTEL_DMIC_NUMBER,18 },19 {},20};21EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_hda_machines);22 23MODULE_LICENSE("GPL v2");24MODULE_DESCRIPTION("Intel Common ACPI Match module");25