diff mbox series

i2c: aspeed: use proper annotation for "fall through"

Message ID 20180906184424.28499-1-wsa@the-dreams.de
State Accepted
Headers show
Series i2c: aspeed: use proper annotation for "fall through" | expand

Commit Message

Wolfram Sang Sept. 6, 2018, 6:44 p.m. UTC
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>
---
 drivers/i2c/busses/i2c-aspeed.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Jae Hyun Yoo Sept. 7, 2018, 5:36 p.m. UTC | #1
> 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=]
> 

Checked that this patch removes the GCC warning.

Tested-by: Jae Hyun Yoo <jae.hyun.yoo@linux.intel.com>
Brendan Higgins Sept. 7, 2018, 5:39 p.m. UTC | #2
On Fri, Sep 7, 2018 at 10:36 AM Jae Hyun Yoo
<jae.hyun.yoo@linux.intel.com> wrote:
>
> > 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=]
> >
>
> Checked that this patch removes the GCC warning.
>
> Tested-by: Jae Hyun Yoo <jae.hyun.yoo@linux.intel.com>

Reviewed-by: Brendan Higgins <brendanhiggins@google.com>

Thanks!
Wolfram Sang Sept. 24, 2018, 9:46 p.m. UTC | #3
On Thu, Sep 06, 2018 at 08:44:24PM +0200, Wolfram Sang wrote:
> 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>

Applied to for-next, thanks!
diff mbox series

Patch

diff --git a/drivers/i2c/busses/i2c-aspeed.c b/drivers/i2c/busses/i2c-aspeed.c
index c258c4d9a4c0..8170201e4aa7 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)
 			goto error_and_stop;
 		}
 		irq_handled |= ASPEED_I2CD_INTR_TX_ACK;
-		/* fallthrough intended */
+		/* fall through */
 	case ASPEED_I2C_MASTER_TX_FIRST:
 		if (bus->buf_index < msg->len) {
 			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)
 		/* RX may not have completed yet (only address cycle) */
 		if (!(irq_status & ASPEED_I2CD_INTR_RX_DONE))
 			goto out_no_complete;
-		/* fallthrough intended */
+		/* fall through */
 	case ASPEED_I2C_MASTER_RX:
 		if (unlikely(!(irq_status & ASPEED_I2CD_INTR_RX_DONE))) {
 			dev_err(bus->dev, "master failed to RX\n");