aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/i2c
diff options
context:
space:
mode:
authorWolfram Sang <wsa@the-dreams.de>2018-09-06 14:44:24 -0400
committerWolfram Sang <wsa@the-dreams.de>2018-09-24 17:45:56 -0400
commitf8878fadba1e8cfcaadf98d437040d3fe9e2d12c (patch)
treefdb5797738a1dd298ac50ded63c923cd6f16f109 /drivers/i2c
parent2be6b47211e17e6c90ead40d24d2a5cc815f2d5c (diff)
i2c: aspeed: use proper annotation for "fall through"
Use a better annotation, so GCC won't complain anymore: drivers/i2c/busses/i2c-aspeed.c:458:15: warning: this statement may fall through [-Wimplicit-fallthrough=] Signed-off-by: Wolfram Sang <wsa@the-dreams.de> Tested-by: Jae Hyun Yoo <jae.hyun.yoo@linux.intel.com> Reviewed-by: Brendan Higgins <brendanhiggins@google.com> Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Diffstat (limited to 'drivers/i2c')
-rw-r--r--drivers/i2c/busses/i2c-aspeed.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/i2c/busses/i2c-aspeed.c b/drivers/i2c/busses/i2c-aspeed.c
index 3d518e09369f..9d6f02265a1b 100644
--- a/drivers/i2c/busses/i2c-aspeed.c
+++ b/drivers/i2c/busses/i2c-aspeed.c
@@ -456,7 +456,7 @@ static u32 aspeed_i2c_master_irq(struct aspeed_i2c_bus *bus, u32 irq_status)
456 goto error_and_stop; 456 goto error_and_stop;
457 } 457 }
458 irq_handled |= ASPEED_I2CD_INTR_TX_ACK; 458 irq_handled |= ASPEED_I2CD_INTR_TX_ACK;
459 /* fallthrough intended */ 459 /* fall through */
460 case ASPEED_I2C_MASTER_TX_FIRST: 460 case ASPEED_I2C_MASTER_TX_FIRST:
461 if (bus->buf_index < msg->len) { 461 if (bus->buf_index < msg->len) {
462 bus->master_state = ASPEED_I2C_MASTER_TX; 462 bus->master_state = ASPEED_I2C_MASTER_TX;
@@ -472,7 +472,7 @@ static u32 aspeed_i2c_master_irq(struct aspeed_i2c_bus *bus, u32 irq_status)
472 /* RX may not have completed yet (only address cycle) */ 472 /* RX may not have completed yet (only address cycle) */
473 if (!(irq_status & ASPEED_I2CD_INTR_RX_DONE)) 473 if (!(irq_status & ASPEED_I2CD_INTR_RX_DONE))
474 goto out_no_complete; 474 goto out_no_complete;
475 /* fallthrough intended */ 475 /* fall through */
476 case ASPEED_I2C_MASTER_RX: 476 case ASPEED_I2C_MASTER_RX:
477 if (unlikely(!(irq_status & ASPEED_I2CD_INTR_RX_DONE))) { 477 if (unlikely(!(irq_status & ASPEED_I2CD_INTR_RX_DONE))) {
478 dev_err(bus->dev, "master failed to RX\n"); 478 dev_err(bus->dev, "master failed to RX\n");