summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLiu Ying <[email protected]>2013-12-22 13:02:42 +0800
committerAnatolij Gustschin <[email protected]>2014-01-12 23:00:06 +0100
commitd47c961695dd60ed7e54dc61c16ef3f3173fe3ea (patch)
tree77f476b37256431159ed5a6d882f13b9a99ecb18
parentf794b532ebfb962bee24bb5257bf03a3bdf59ebf (diff)
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 <[email protected]> Acked-by: Robin Gong <[email protected]> Cc: Stefano Babic <[email protected]> Signed-off-by: Liu Ying <[email protected]>
-rw-r--r--drivers/video/ipu_regs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/ipu_regs.h b/drivers/video/ipu_regs.h
index b2481a48679..21e9c99e0e6 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];
};