diff options
author | Gustavo A. R. Silva <gustavoars@kernel.org> | 2020-07-22 01:05:10 +0200 |
---|---|---|
committer | Wolfram Sang <wsa@kernel.org> | 2020-07-23 22:04:08 +0200 |
commit | 4db7e1786db505eee86e6301cd42967f4da43be8 (patch) | |
tree | e91db540ed5936325426772ed3f906514e57e557 /drivers/i2c/busses/scx200_acb.c | |
parent | dt-bindings: i2c: mv64xxx: Add compatible for the A100 i2c node. (diff) | |
download | linux-4db7e1786db505eee86e6301cd42967f4da43be8.tar.xz linux-4db7e1786db505eee86e6301cd42967f4da43be8.zip |
i2c: busses: Use fallthrough pseudo-keyword
Replace the existing /* fall through */ comments and its variants with
the new pseudo-keyword macro fallthrough[1].
[1] https://www.kernel.org/doc/html/v5.7/process/deprecated.html?highlight=fallthrough#implicit-switch-case-fall-through
Acked-by: Baruch Siach <baruch@tkos.co.il>
Reviewed-by: Jean Delvare <jdelvare@suse.de>
Reviewed-by: Brendan Higgins <brendanhiggins@google.com>
Reviewed-by: Gregory CLEMENT <gregory.clement@bootlin.com>
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
Signed-off-by: Wolfram Sang <wsa@kernel.org>
Diffstat (limited to 'drivers/i2c/busses/scx200_acb.c')
-rw-r--r-- | drivers/i2c/busses/scx200_acb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/busses/scx200_acb.c b/drivers/i2c/busses/scx200_acb.c index bd9afa383d12..7b42a18bd05c 100644 --- a/drivers/i2c/busses/scx200_acb.c +++ b/drivers/i2c/busses/scx200_acb.c @@ -151,7 +151,7 @@ static void scx200_acb_machine(struct scx200_acb_iface *iface, u8 status) case state_repeat_start: outb(inb(ACBCTL1) | ACBCTL1_START, ACBCTL1); - /* fallthrough */ + fallthrough; case state_quick: if (iface->address_byte & 1) { |