aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYang Li <[email protected]>2022-02-27 21:22:08 +0800
committerJakub Kicinski <[email protected]>2022-03-02 22:22:18 -0800
commitcb1d8fba91f2ecf828000707cc56a376498078a4 (patch)
treea7efc7c99b1b03b35efcab52bd7d7dfffe189839
parentd922a99b96d0030f2e7e8128e98f29123172bd03 (diff)
net: openvswitch: remove unneeded semicolon
Eliminate the following coccicheck warning: ./net/openvswitch/flow.c:379:2-3: Unneeded semicolon Reported-by: Abaci Robot <[email protected]> Signed-off-by: Yang Li <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Jakub Kicinski <[email protected]>
-rw-r--r--net/openvswitch/flow.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/openvswitch/flow.c b/net/openvswitch/flow.c
index 8df73d86b968..372bf54a0ca9 100644
--- a/net/openvswitch/flow.c
+++ b/net/openvswitch/flow.c
@@ -376,7 +376,7 @@ static void get_ipv6_ext_hdrs(struct sk_buff *skb, struct ipv6hdr *nh,
break;
next_type = hp->nexthdr;
start += ipv6_optlen(hp);
- };
+ }
}
static int parse_ipv6hdr(struct sk_buff *skb, struct sw_flow_key *key)