aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc/link.c
diff options
context:
space:
mode:
authorMiaohe Lin <linmiaohe@huawei.com>2020-08-18 08:07:13 -0400
committerDavid S. Miller <davem@davemloft.net>2020-08-18 12:46:48 -0700
commit7f8901b74bf25429023a3d5685cb3fe4f2292e12 (patch)
treef43c0d331f11b55892e0be603e87d00cb92f8ac6 /net/tipc/link.c
parentMerge branch 'netlink-allow-NLA_BINARY-length-range-validation' (diff)
downloadlinux-dev-7f8901b74bf25429023a3d5685cb3fe4f2292e12.tar.xz
linux-dev-7f8901b74bf25429023a3d5685cb3fe4f2292e12.zip
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.c2
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;