Skip to content
Snippets Groups Projects
Commit 80333fd8 authored by John Keeping's avatar John Keeping Committed by Heiko Schocher
Browse files

rockchip: i2c: use named constant when appropriate


Make it clear that we are using the same value in two adjacent lines.

Signed-off-by: default avatarJohn Keeping <john@metanate.com>
Acked-by: default avatarSimon Glass <sjg@chromium.org>
parent 8cbb389b
No related branches found
No related tags found
No related merge requests found
......@@ -258,7 +258,7 @@ static int rk_i2c_write(struct rk_i2c *i2c, uchar chip, uint reg, uint r_len,
while (bytes_remain_len) {
if (bytes_remain_len > RK_I2C_FIFO_SIZE)
bytes_xferred = 32;
bytes_xferred = RK_I2C_FIFO_SIZE;
else
bytes_xferred = bytes_remain_len;
words_xferred = DIV_ROUND_UP(bytes_xferred, 4);
......
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