Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/sound/soc/intel/common/soc-acpi-intel-hda-match.c
26493 views
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
.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
};
21
EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_hda_machines);
22
23
MODULE_LICENSE("GPL v2");
24
MODULE_DESCRIPTION("Intel Common ACPI Match module");
25
26