diff options
author | Gustavo A. R. Silva <gustavo@embeddedor.com> | 2018-09-13 13:59:13 -0500 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2018-09-25 00:06:02 +0200 |
commit | 4310834412199ac9ab02350e5c360a210478e015 (patch) | |
tree | 284d7fb62942d1c44ac2407fe74df9ff54738f35 /drivers/i2c | |
parent | 17ccba67109cd0631f206cf49e17986218b47854 (diff) | |
download | linux-4310834412199ac9ab02350e5c360a210478e015.tar.gz linux-4310834412199ac9ab02350e5c360a210478e015.tar.bz2 linux-4310834412199ac9ab02350e5c360a210478e015.zip |
i2c: synquacer: fix fall-through annotation
Replace "fallthru" with a proper "fall through" annotation.
This fix is part of the ongoing efforts to enabling
-Wimplicit-fallthrough
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Acked-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Diffstat (limited to 'drivers/i2c')
-rw-r--r-- | drivers/i2c/busses/i2c-synquacer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/busses/i2c-synquacer.c b/drivers/i2c/busses/i2c-synquacer.c index 915f5edbab33..2184b7c3580e 100644 --- a/drivers/i2c/busses/i2c-synquacer.c +++ b/drivers/i2c/busses/i2c-synquacer.c @@ -404,7 +404,7 @@ static irqreturn_t synquacer_i2c_isr(int irq, void *dev_id) if (i2c->state == STATE_READ) goto prepare_read; - /* fallthru */ + /* fall through */ case STATE_WRITE: if (bsr & SYNQUACER_I2C_BSR_LRB) { |