Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/sound/soc/amd/acp/soc-acpi-amd-sdca-quirks.h
121834 views
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
/*
3
* soc-acpi-amd-sdca-quirks.h - tables and support for SDCA quirks
4
*
5
* Copyright(c) 2025 Advanced Micro Devices, Inc. All rights reserved.
6
*
7
*/
8
9
#ifndef _SND_SOC_ACPI_AMD_SDCA_QUIRKS
10
#define _SND_SOC_ACPI_AMD_SDCA_QUIRKS
11
12
#if IS_ENABLED(CONFIG_SND_SOC_ACPI_AMD_SDCA_QUIRKS)
13
14
bool snd_soc_acpi_amd_sdca_is_device_rt712_vb(void *arg);
15
16
#else
17
18
static inline bool snd_soc_acpi_amd_sdca_is_device_rt712_vb(void *arg)
19
{
20
return false;
21
}
22
23
#endif
24
25
#endif
26
27