Skip to content
Snippets Groups Projects
Commit ad5e14ec authored by Hisashi Nakamura's avatar Hisashi Nakamura Committed by Heiko Schocher
Browse files

rcar_i2c: Fix receiving wait condition

parent 7f673c99
No related branches found
No related tags found
No related merge requests found
...@@ -122,8 +122,8 @@ rcar_i2c_raw_read(struct rcar_i2c *dev, u8 chip, uint addr) ...@@ -122,8 +122,8 @@ rcar_i2c_raw_read(struct rcar_i2c *dev, u8 chip, uint addr)
/* start master receive */ /* start master receive */
writel(MCR_MDBS | MCR_MIE | MCR_ESG, &dev->icmcr); writel(MCR_MDBS | MCR_MIE | MCR_ESG, &dev->icmcr);
while ((readl(&dev->icmsr) & (MSR_MAT | MSR_MDE)) while ((readl(&dev->icmsr) & (MSR_MAT | MSR_MDR))
!= (MSR_MAT | MSR_MDE)) != (MSR_MAT | MSR_MDR))
udelay(10); udelay(10);
/* clear ESG */ /* clear ESG */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment