Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/sound/soc/intel/common/soc-acpi-intel-hsw-bdw-match.c
26493 views
1
// SPDX-License-Identifier: GPL-2.0-only
2
/*
3
* soc-acpi-intel-hsw-bdw-match.c - tables and support for ACPI enumeration.
4
*
5
* Copyright (c) 2017, Intel Corporation.
6
*/
7
8
#include <linux/dmi.h>
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_broadwell_machines[] = {
13
{
14
.id = "INT343A",
15
.drv_name = "bdw_rt286",
16
.sof_tplg_filename = "sof-bdw-rt286.tplg",
17
},
18
{
19
.id = "10EC5650",
20
.drv_name = "bdw-rt5650",
21
.sof_tplg_filename = "sof-bdw-rt5650.tplg",
22
},
23
{
24
.id = "RT5677CE",
25
.drv_name = "bdw-rt5677",
26
.sof_tplg_filename = "sof-bdw-rt5677.tplg",
27
},
28
{
29
.id = "INT33CA",
30
.drv_name = "hsw_rt5640",
31
.sof_tplg_filename = "sof-bdw-rt5640.tplg",
32
},
33
{}
34
};
35
EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_broadwell_machines);
36
37