diff options
author | Peter Downs <padowns@gmail.com> | 2017-03-01 01:01:17 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-03-02 13:14:44 -0800 |
commit | f1304f7ba3981e71dcf2ac7db92949eeab49b1bf (patch) | |
tree | 191e2f4469701942e86907e3a9848870209d3546 /net/openvswitch | |
parent | 11bd44f62d86115796109b0349e6e191bc99b45a (diff) | |
download | linux-stable-f1304f7ba3981e71dcf2ac7db92949eeab49b1bf.tar.gz linux-stable-f1304f7ba3981e71dcf2ac7db92949eeab49b1bf.tar.bz2 linux-stable-f1304f7ba3981e71dcf2ac7db92949eeab49b1bf.zip |
openvswitch: actions: fixed a brace coding style warning
Fixed a brace coding style warning reported by checkpatch.pl
Signed-off-by: Peter Downs <padowns@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/openvswitch')
-rw-r--r-- | net/openvswitch/actions.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/openvswitch/actions.c b/net/openvswitch/actions.c index b1beb2b94ec7..c82301ce3fff 100644 --- a/net/openvswitch/actions.c +++ b/net/openvswitch/actions.c @@ -796,9 +796,8 @@ static void ovs_fragment(struct net *net, struct vport *vport, unsigned long orig_dst; struct rt6_info ovs_rt; - if (!v6ops) { + if (!v6ops) goto err; - } prepare_frag(vport, skb, orig_network_offset, ovs_key_mac_proto(key)); |