From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peng Fan Date: Thu, 29 Oct 2015 15:54:41 +0800 Subject: [U-Boot] [PATCH V3 04/16] mxs: regs-common.h must be wrapped with !__ASSEMBLY__ In-Reply-To: <1446105293-31775-1-git-send-email-Peng.Fan@freescale.com> References: <1446105293-31775-1-git-send-email-Peng.Fan@freescale.com> Message-ID: <1446105293-31775-4-git-send-email-Peng.Fan@freescale.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de regs-common.h must be wrapped with #ifndef __ASSEMBLY__ Signed-off-by: Peng Fan Cc: Stefano Babic --- Changes v3: new patch arch/arm/include/asm/arch-mxs/regs-lcdif.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/include/asm/arch-mxs/regs-lcdif.h b/arch/arm/include/asm/arch-mxs/regs-lcdif.h index 8915d84..fff6379 100644 --- a/arch/arm/include/asm/arch-mxs/regs-lcdif.h +++ b/arch/arm/include/asm/arch-mxs/regs-lcdif.h @@ -13,9 +13,9 @@ #ifndef __MX28_REGS_LCDIF_H__ #define __MX28_REGS_LCDIF_H__ +#ifndef __ASSEMBLY__ #include -#ifndef __ASSEMBLY__ struct mxs_lcdif_regs { mxs_reg_32(hw_lcdif_ctrl) /* 0x00 */ mxs_reg_32(hw_lcdif_ctrl1) /* 0x10 */ -- 1.8.4