From: Christopher Díaz Riveros Date: Wed, 17 Jan 2018 21:10:28 +0000 (-0500) Subject: flow_netlink: Remove unneeded semicolons X-Git-Tag: v4.19~1702^2~130 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=89290b831ec1a0b233fdc7aaad84acdf4ebbf6aa;p=platform%2Fkernel%2Flinux-rpi.git flow_netlink: Remove unneeded semicolons Trivial fix removes unneeded semicolons after if blocks. This issue was detected by using the Coccinelle software. Signed-off-by: Christopher Díaz Riveros Signed-off-by: David S. Miller --- diff --git a/net/openvswitch/flow_netlink.c b/net/openvswitch/flow_netlink.c index f143908..eb55f1b 100644 --- a/net/openvswitch/flow_netlink.c +++ b/net/openvswitch/flow_netlink.c @@ -2454,7 +2454,7 @@ static int validate_geneve_opts(struct sw_flow_key *key) option = (struct geneve_opt *)((u8 *)option + len); opts_len -= len; - }; + } key->tun_key.tun_flags |= crit_opt ? TUNNEL_CRIT_OPT : 0; @@ -2487,7 +2487,7 @@ static int validate_and_copy_set_tun(const struct nlattr *attr, case OVS_TUNNEL_KEY_ATTR_VXLAN_OPTS: break; } - }; + } start = add_nested_action_start(sfa, OVS_ACTION_ATTR_SET, log); if (start < 0)