[alsa-devel] [PATCH] ASoC: eukrea-tlv320: Do not enable on ARM64
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@gmail.com ---
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
Hi Andrey,
On Tue, Dec 18, 2018 at 8:58 PM Andrey Smirnov andrew.smirnov@gmail.com wrote:
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@gmail.com
Sorry for the noise if this is fixed already.
Yes, I sent a fix for this and it is linux-next already: https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/s...
participants (2)
-
Andrey Smirnov
-
Fabio Estevam