From mboxrd@z Thu Jan 1 00:00:00 1970 From: sergei.shtylyov@cogentembedded.com (Sergei Shtylyov) Date: Thu, 03 Jul 2014 21:51:54 +0400 Subject: [PATCH] ARM: imx: build cpu_is_imx6sl function conditionally In-Reply-To: <4295402.oOSEcbAj2f@wuerfel> References: <4295402.oOSEcbAj2f@wuerfel> Message-ID: <53B5983A.8030107@cogentembedded.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org Hello. On 07/03/2014 06:22 PM, Arnd Bergmann wrote: > imx6q_pm_enter calls imx6sl_set_wait_clk when run on an imx6sl > based machine. However if support for imx6sl is not enabled > at compile time, this prevents us from building the kernel and > we get this link error instead: > arch/arm/mach-imx/built-in.o: In function `imx6q_pm_enter': > :(.text+0x4b84): undefined reference to `imx6sl_set_wait_clk' > This makes the cpu_is_imx6sl function conditionally return false > if imx6sl is disabled at compile-time, which matches what the > older cpu_is_mx* macros did. We have similar inline functions for > the other imx6 variants, but so far I have not run into a case > where the extra #ifdef is necessary. > Signed-off-by: Arnd Bergmann > diff --git a/arch/arm/mach-imx/mxc.h b/arch/arm/mach-imx/mxc.h > index 75d6a37..b03b808 100644 > --- a/arch/arm/mach-imx/mxc.h > +++ b/arch/arm/mach-imx/mxc.h > @@ -156,7 +156,11 @@ extern unsigned int __mxc_cpu_type; > #ifndef __ASSEMBLY__ > static inline bool cpu_is_imx6sl(void) > { > +#ifdef CONFIG_SOC_IMX6SL > return __mxc_cpu_type == MXC_CPU_IMX6SL; > +#else > + return 0; s/0/false/. > +#endif Also, #ifdef's in a function body are ugly. > } WBR, Sergei