diff options
author | Gustavo A. R. Silva <gustavo@embeddedor.com> | 2018-08-08 02:13:12 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-08-08 03:54:19 +0300 |
commit | 20e4fb12b146cab4ca9c4f1e10c04fcd67823f43 (patch) | |
tree | 86b37f9980d6c9a8c0c1378eb9355a0aa5cf1452 /drivers/net/ethernet/chelsio/cxgb4/l2t.c | |
parent | 19aa45d447002798ec006faddd4f491a5839bebe (diff) | |
download | linux-20e4fb12b146cab4ca9c4f1e10c04fcd67823f43.tar.xz |
cxgb4/l2t: Mark expected switch fall-through
In preparation to enabling -Wimplicit-fallthrough, mark switch cases
where we are expecting to fall through.
Addresses-Coverity-ID: 114910 ("Missing break in switch")
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/chelsio/cxgb4/l2t.c')
-rw-r--r-- | drivers/net/ethernet/chelsio/cxgb4/l2t.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/chelsio/cxgb4/l2t.c b/drivers/net/ethernet/chelsio/cxgb4/l2t.c index 77c2c538b1fd..301c4df8a566 100644 --- a/drivers/net/ethernet/chelsio/cxgb4/l2t.c +++ b/drivers/net/ethernet/chelsio/cxgb4/l2t.c @@ -231,6 +231,7 @@ again: if (e->state == L2T_STATE_STALE) e->state = L2T_STATE_VALID; spin_unlock_bh(&e->lock); + /* fall through */ case L2T_STATE_VALID: /* fast-path, send the packet on */ return t4_ofld_send(adap, skb); case L2T_STATE_RESOLVING: |