[PATCH] ASoC: eukrea-tlv320: Do not enable on ARM64
From: Andrey Smirnov
Date: Tue Dec 18 2018 - 17:58:44 EST
ARCH_MXC is also used by i.MX8/AArch64 SoC, building the driver for
that platform results in:
sound/soc/fsl/eukrea-tlv320.c:28:10: fatal error: asm/mach-types.h: No such file or directory
#include <asm/mach-types.h>
^~~~~~~~~~~~~~~~~~
compilation terminated.
Since the code in question doesn't seem to have any use on i.MX8,
disable it by adding a !ARM64 as a dependecy.
Signed-off-by: Andrey Smirnov <andrew.smirnov@xxxxxxxxx>
---
Sorry for the noise if this is fixed already.
Thanks,
Andrey Smirnov
sound/soc/fsl/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sound/soc/fsl/Kconfig b/sound/soc/fsl/Kconfig
index 6ec19fb4a934..2e75b5bc5f1d 100644
--- a/sound/soc/fsl/Kconfig
+++ b/sound/soc/fsl/Kconfig
@@ -221,7 +221,7 @@ config SND_SOC_PHYCORE_AC97
config SND_SOC_EUKREA_TLV320
tristate "Eukrea TLV320"
- depends on ARCH_MXC && I2C
+ depends on ARCH_MXC && !ARM64 && I2C
select SND_SOC_TLV320AIC23_I2C
select SND_SOC_IMX_AUDMUX
select SND_SOC_IMX_SSI
--
2.19.1