diff options
author | Miaohe Lin | 2020-08-18 08:07:13 -0400 |
---|---|---|
committer | David S. Miller | 2020-08-18 12:46:48 -0700 |
commit | 7f8901b74bf25429023a3d5685cb3fe4f2292e12 (patch) | |
tree | f43c0d331f11b55892e0be603e87d00cb92f8ac6 /net/tipc/link.c | |
parent | 396fc59e390429e87584d162462c1555fd64576a (diff) |
net: tipc: Convert to use the preferred fallthrough macro
Convert the uses of fallthrough comments to fallthrough macro.
Signed-off-by: Miaohe Lin <linmiaohe@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc/link.c')
-rw-r--r-- | net/tipc/link.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/tipc/link.c b/net/tipc/link.c index 107578122973..b7362556da95 100644 --- a/net/tipc/link.c +++ b/net/tipc/link.c @@ -1239,7 +1239,7 @@ static bool tipc_data_input(struct tipc_link *l, struct sk_buff *skb, skb_queue_tail(mc_inputq, skb); return true; } - /* fall through */ + fallthrough; case CONN_MANAGER: skb_queue_tail(inputq, skb); return true; |