mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:05:18 +07:00
e51b69808b
Fix some typo to have the filaname given in a comment match the real name of the file. Some 'acpi' have erroneously been written 'apci' Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Link: https://lore.kernel.org/r/20190725053523.16542-1-christophe.jaillet@wanadoo.fr Signed-off-by: Mark Brown <broonie@kernel.org>
49 lines
1.2 KiB
C
49 lines
1.2 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* soc-acpi-intel-glk-match.c - tables and support for GLK ACPI enumeration.
|
|
*
|
|
* Copyright (c) 2018, Intel Corporation.
|
|
*
|
|
*/
|
|
|
|
#include <sound/soc-acpi.h>
|
|
#include <sound/soc-acpi-intel-match.h>
|
|
|
|
static struct snd_soc_acpi_codecs glk_codecs = {
|
|
.num_codecs = 1,
|
|
.codecs = {"MX98357A"}
|
|
};
|
|
|
|
struct snd_soc_acpi_mach snd_soc_acpi_intel_glk_machines[] = {
|
|
{
|
|
.id = "INT343A",
|
|
.drv_name = "glk_alc298s_i2s",
|
|
.fw_filename = "intel/dsp_fw_glk.bin",
|
|
.sof_fw_filename = "sof-glk.ri",
|
|
.sof_tplg_filename = "sof-glk-alc298.tplg",
|
|
},
|
|
{
|
|
.id = "DLGS7219",
|
|
.drv_name = "glk_da7219_max98357a",
|
|
.fw_filename = "intel/dsp_fw_glk.bin",
|
|
.machine_quirk = snd_soc_acpi_codec_list,
|
|
.quirk_data = &glk_codecs,
|
|
.sof_fw_filename = "sof-glk.ri",
|
|
.sof_tplg_filename = "sof-glk-da7219.tplg",
|
|
},
|
|
{
|
|
.id = "10EC5682",
|
|
.drv_name = "glk_rt5682_max98357a",
|
|
.fw_filename = "intel/dsp_fw_glk.bin",
|
|
.machine_quirk = snd_soc_acpi_codec_list,
|
|
.quirk_data = &glk_codecs,
|
|
.sof_fw_filename = "sof-glk.ri",
|
|
.sof_tplg_filename = "sof-glk-rt5682.tplg",
|
|
},
|
|
{},
|
|
};
|
|
EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_glk_machines);
|
|
|
|
MODULE_LICENSE("GPL v2");
|
|
MODULE_DESCRIPTION("Intel Common ACPI Match module");
|