From: Timo Ketola Date: Wed, 18 Apr 2012 22:55:34 +0000 (+0000) Subject: i.MX2: Include asm/types.h in arch-mx25/imx-regs.h X-Git-Tag: v2012.07-rc1~144^2~67 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8f385e958dbccb2c9d38e3a5239f8b840c916419;p=platform%2Fkernel%2Fu-boot.git i.MX2: Include asm/types.h in arch-mx25/imx-regs.h types.h must be included in imx-regs.h if one wants to include imx-regs.h in a board configuration file. That for one's part is necessary, if one wants to use addresses defined in imx-regs.h. For example, fsl_esdhc.c needs CONFIG_SYS_FSL_ESDHC_ADDR defined and a proper thing is to define it with IMX_MMC_SDHCx_BASE in board configuration file. This patch fixes the build in that case. Signed-off-by: Timo Ketola Acked-by: Stefano Babic --- diff --git a/arch/arm/include/asm/arch-mx25/imx-regs.h b/arch/arm/include/asm/arch-mx25/imx-regs.h index 7f9449b..cf925d7 100644 --- a/arch/arm/include/asm/arch-mx25/imx-regs.h +++ b/arch/arm/include/asm/arch-mx25/imx-regs.h @@ -34,6 +34,9 @@ #define _IMX_REGS_H #ifndef __ASSEMBLY__ + +#include + #ifdef CONFIG_FEC_MXC extern void mx25_fec_init_pins(void); #endif