mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 23:51:33 +00:00
rockchip: i2c: move register write out of inner loop
There is no point in writing intermediate values to the txdata registers. Also add padding to the debug logging to make it easier to read when there are leading zeroes. Signed-off-by: John Keeping <john@metanate.com> Acked-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
80333fd85c
commit
551288bd8b
1 changed files with 2 additions and 2 deletions
|
@ -277,9 +277,9 @@ static int rk_i2c_write(struct rk_i2c *i2c, uchar chip, uint reg, uint r_len,
|
|||
} else {
|
||||
txdata |= (*pbuf++)<<(j * 8);
|
||||
}
|
||||
writel(txdata, ®s->txdata[i]);
|
||||
}
|
||||
debug("I2c Write TXDATA[%d] = 0x%x\n", i, txdata);
|
||||
writel(txdata, ®s->txdata[i]);
|
||||
debug("I2c Write TXDATA[%d] = 0x%08x\n", i, txdata);
|
||||
}
|
||||
|
||||
writel(I2C_CON_EN | I2C_CON_MOD(I2C_MODE_TX), ®s->con);
|
||||
|
|
Loading…
Reference in a new issue