From b0fd5f272895dfb0891872c099df7eef1519f729 Mon Sep 17 00:00:00 2001 From: Peng Fan Date: Mon, 24 Nov 2014 10:30:38 +0800 Subject: MLK-9898 imx:mx6 fix ana2 offset of fuse bank1 According to RM, there is 16bytes between offset ana1 and offset ana2. So should add 3 int hole 'u32 reserved[3]' between ana1 and ana2. Also add the reserved bytes for ana2 in this patch. Signed-off-by: Peng Fan --- arch/arm/include/asm/arch-mx6/imx-regs.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm/include/asm/arch-mx6/imx-regs.h b/arch/arm/include/asm/arch-mx6/imx-regs.h index ed520ec..fd85803 100644 --- a/arch/arm/include/asm/arch-mx6/imx-regs.h +++ b/arch/arm/include/asm/arch-mx6/imx-regs.h @@ -601,7 +601,9 @@ struct fuse_bank0_regs { struct fuse_bank1_regs { u32 mem[0x18]; u32 ana1; + u32 rsvd1[3]; u32 ana2; + u32 rsvd2[3]; }; #ifdef CONFIG_MX6SX -- cgit v1.1