[U-Boot] [PATCH 2/2] video: ipu reg: Correct reserved array size in struct ipu_idmac

Yibin Gong yibin.gong at freescale.com
Fri Dec 20 10:34:11 CET 2013


Acked-by: Robin Gong <b38343 at freescale.com>

-----Original Message-----
From: Liu Ying [mailto:Ying.Liu at freescale.com] 
Sent: Friday, December 20, 2013 5:30 PM
To: agust at denx.de
Cc: u-boot at lists.denx.de; sbabic at denx.de; Gong Yibin-B38343
Subject: [PATCH 2/2] video: ipu reg: Correct reserved array size in struct ipu_idmac

The array reserved as a placeholder in the structure ipu_idmac should contain 44 32bit unsigned integer entries instead of 45 ones, because the placeholder is located bewteen the register
IDMAC_SC_CORD1 and the register IDMAC_CH_BUSY_1 with the address offsets of 0x804c and 0x8100 respectively.

Reported-by: Robin Gong <b38343 at freescale.com>
Cc: Stefano Babic <sbabic at denx.de>
Signed-off-by: Liu Ying <Ying.Liu at freescale.com>
---
 drivers/video/ipu_regs.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/video/ipu_regs.h b/drivers/video/ipu_regs.h index b2481a4..21e9c99 100644
--- a/drivers/video/ipu_regs.h
+++ b/drivers/video/ipu_regs.h
@@ -188,7 +188,7 @@ struct ipu_idmac {
 	u32 sub_addr[5];
 	u32 bndm_en[2];
 	u32 sc_cord[2];
-	u32 reserved[45];
+	u32 reserved[44];
 	u32 ch_busy[2];
 };
 
--
1.7.9.5




More information about the U-Boot mailing list