From e69c77b9a80d9a6c47716c9382be40d5d55e327f Mon Sep 17 00:00:00 2001 From: Sri Krishna chowdary Date: Thu, 19 May 2016 14:55:25 +0530 Subject: [PATCH] ASoC: tegra-alt: fix compilation issues 1. clang found out that this header is unprotected. Fix it by correcting the typo. 2. clang incorrectly warns about overflow in DMA_BIT_MASK(64) This is incorrect. So, ignore it. bug 200174682 Change-Id: Ib6294dad8e92844a04fad46d49f801cd2a32c866 Signed-off-by: Sri Krishna chowdary Reviewed-on: http://git-master/r/1150396 Reviewed-by: Automatic_Commit_Validation_User GVS: Gerrit_Virtual_Submit Reviewed-by: Mohan Kumar D Reviewed-by: Sachin Nikam --- sound/soc/tegra-alt/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/sound/soc/tegra-alt/Makefile b/sound/soc/tegra-alt/Makefile index 8726ce8f..2a840531 100644 --- a/sound/soc/tegra-alt/Makefile +++ b/sound/soc/tegra-alt/Makefile @@ -4,6 +4,7 @@ subdir-ccflags-y := -Werror # Tegra platform Support snd-soc-tegra-alt-pcm-objs := tegra_pcm_alt.o +CFLAGS_tegra_pcm_alt.o += -Wno-shift-count-overflow snd-soc-tegra-alt-utils-objs := tegra_asoc_utils_alt.o snd-soc-tegra-alt-hwdep-objs := tegra_asoc_hwdep_alt.o snd-soc-tegra-alt-machine-objs := tegra_asoc_machine_alt.o