]> Git Repo - linux.git/commitdiff
i2c: xiic: fix indentation issue
authorColin Ian King <[email protected]>
Mon, 27 Jan 2020 11:13:36 +0000 (11:13 +0000)
committerWolfram Sang <[email protected]>
Wed, 29 Jan 2020 20:53:51 +0000 (21:53 +0100)
There is a statement that is indented one level too deeply, remove
the extraneous tab.

Fixes: b4c119dbc300 ("i2c: xiic: Add timeout to the rx fifo wait loop")
Signed-off-by: Colin Ian King <[email protected]>
Reviewed-by: Shubhrajyoti Datta <[email protected]>
Signed-off-by: Wolfram Sang <[email protected]>
drivers/i2c/busses/i2c-xiic.c

index b17d30c9ab4004335da5a22593ed4f37caa052f4..90c1c362394d099e7af64276e507999bdb49a692 100644 (file)
@@ -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;
                }
        }
 
This page took 0.063782 seconds and 4 git commands to generate.