From: Stephen Boyd Date: Wed, 24 Jul 2013 20:54:27 +0000 (-0700) Subject: ARM: msm: Don't compile __msm_ioremap_caller() unless used X-Git-Tag: next-20130731~14^2^2~7 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=0c211c29f2439e42b5c5b20c65dfde6f39aa7bbf;p=karo-tx-linux.git ARM: msm: Don't compile __msm_ioremap_caller() unless used This function is only used on MSM7x00A so only compile the function if the build includes support for that platform. Signed-off-by: Stephen Boyd Signed-off-by: David Brown --- diff --git a/arch/arm/mach-msm/io.c b/arch/arm/mach-msm/io.c index 3dc04ccaf59f..4a1a222ac778 100644 --- a/arch/arm/mach-msm/io.c +++ b/arch/arm/mach-msm/io.c @@ -168,6 +168,7 @@ void __init msm_map_msm7x30_io(void) } #endif /* CONFIG_ARCH_MSM7X30 */ +#ifdef CONFIG_ARCH_MSM7X00A void __iomem *__msm_ioremap_caller(phys_addr_t phys_addr, size_t size, unsigned int mtype, void *caller) { @@ -182,3 +183,4 @@ void __iomem *__msm_ioremap_caller(phys_addr_t phys_addr, size_t size, return __arm_ioremap_caller(phys_addr, size, mtype, caller); } +#endif