From: Stefano Babic Date: Fri, 6 Jun 2014 08:58:47 +0000 (+0200) Subject: MX25: fix build due to missing sys_proto.h X-Git-Tag: v2014.07~5^2~20 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=67a04ab3ab8522a3a34491853e46105317580df5;p=platform%2Fkernel%2Fu-boot.git MX25: fix build due to missing sys_proto.h THe mx25 arch does not have a sys_proto.h file. Instead of creating a dummy file, the file is not included for this SOC. Signed-off-by: Stefano Babic --- diff --git a/arch/arm/imx-common/iomux-v3.c b/arch/arm/imx-common/iomux-v3.c index 306183a..c090b30 100644 --- a/arch/arm/imx-common/iomux-v3.c +++ b/arch/arm/imx-common/iomux-v3.c @@ -11,7 +11,9 @@ #include #include #include +#ifndef CONFIG_MX25 #include +#endif #include static void *base = (void *)IOMUXC_BASE_ADDR;