mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-18 13:16:55 +07:00
e149ca29f3
Remove the ambiguity with GPL-2.0 and use an explicit GPL-2.0-only tag. Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Reviewed-by: Daniel Baluta <daniel.baluta@nxp.com> Reviewed-by: Kai Vehmanen <kai.vehmanen@linux.intel.com> Reviewed-by: Guennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com> Link: https://lore.kernel.org/r/20200501145850.15178-1-pierre-louis.bossart@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
37 lines
877 B
C
37 lines
877 B
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* soc-acpi-intel-cnl-match.c - tables and support for CNL ACPI enumeration.
|
|
*
|
|
* Copyright (c) 2018, Intel Corporation.
|
|
*
|
|
*/
|
|
|
|
#include <sound/soc-acpi.h>
|
|
#include <sound/soc-acpi-intel-match.h>
|
|
#include "../skylake/skl.h"
|
|
|
|
static struct skl_machine_pdata cnl_pdata = {
|
|
.use_tplg_pcm = true,
|
|
};
|
|
|
|
struct snd_soc_acpi_mach snd_soc_acpi_intel_cnl_machines[] = {
|
|
{
|
|
.id = "INT34C2",
|
|
.drv_name = "cnl_rt274",
|
|
.fw_filename = "intel/dsp_fw_cnl.bin",
|
|
.pdata = &cnl_pdata,
|
|
.sof_fw_filename = "sof-cnl.ri",
|
|
.sof_tplg_filename = "sof-cnl-rt274.tplg",
|
|
},
|
|
{},
|
|
};
|
|
EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_cnl_machines);
|
|
|
|
struct snd_soc_acpi_mach snd_soc_acpi_intel_cnl_sdw_machines[] = {
|
|
{},
|
|
};
|
|
EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_cnl_sdw_machines);
|
|
|
|
MODULE_LICENSE("GPL v2");
|
|
MODULE_DESCRIPTION("Intel Common ACPI Match module");
|