Commit 878508ae authored by Colin Ian King's avatar Colin Ian King Committed by Wolfram Sang

i2c: xiic: fix indentation issue

There is a statement that is indented one level too deeply, remove
the extraneous tab.

Fixes: b4c119db ("i2c: xiic: Add timeout to the rx fifo wait loop")
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Reviewed-by: default avatarShubhrajyoti Datta <shubhrajyoti.datta@gmail.com>
Signed-off-by: default avatarWolfram Sang <wsa@the-dreams.de>
parent eca95cd5
......@@ -261,7 +261,7 @@ static int xiic_clear_rx_fifo(struct xiic_i2c *i2c)
xiic_getreg8(i2c, XIIC_DRR_REG_OFFSET);
if (time_after(jiffies, timeout)) {
dev_err(i2c->dev, "Failed to clear rx fifo\n");
return -ETIMEDOUT;
return -ETIMEDOUT;
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment