diff options
Diffstat (limited to 'drivers/i2c')
| -rw-r--r-- | drivers/i2c/busses/i2c-aspeed.c | 4 |
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"); |
