projects
/
platform
/
kernel
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ad5e14e
)
rcar_i2c: Clear status before start master receive
author
Nobuhiro Iwamatsu
<nobuhiro.iwamatsu.yj@renesas.com>
Wed, 11 Dec 2013 06:49:28 +0000
(15:49 +0900)
committer
Heiko Schocher
<hs@denx.de>
Mon, 13 Jan 2014 07:16:48 +0000
(08:16 +0100)
Signed-off-by: Hisashi Nakamura <hisashi.nakamura.ak@renesas.com>
Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
drivers/i2c/rcar_i2c.c
patch
|
blob
|
history
diff --git
a/drivers/i2c/rcar_i2c.c
b/drivers/i2c/rcar_i2c.c
index
01c98d4
..
50cebd6
100644
(file)
--- a/
drivers/i2c/rcar_i2c.c
+++ b/
drivers/i2c/rcar_i2c.c
@@
-119,6
+119,8
@@
rcar_i2c_raw_read(struct rcar_i2c *dev, u8 chip, uint addr)
/* set slave address, receive */
writel((chip << 1) | 1, &dev->icmar);
+ /* clear status */
+ writel(0, &dev->icmsr);
/* start master receive */
writel(MCR_MDBS | MCR_MIE | MCR_ESG, &dev->icmcr);