diff options
author | Jamal Hadi Salim <jhs@mojatatu.com> | 2016-06-05 10:41:32 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-06-07 15:53:54 -0700 |
commit | 0b0f43fe2e7291aa97b1febeaa5a0de453d007ca (patch) | |
tree | c2f1c26ffbf8ec9d9b606a58b018622a023b2ae5 /net/sched/act_vlan.c | |
parent | be119913689724b6fe84caa779c2508547c4e8d5 (diff) |
net sched: indentation and other OCD stylistic fixes
Signed-off-by: Jamal Hadi Salim <jhs@mojatatu.com>
Acked-by: Cong Wang <xiyou.wangcong@gmail.com>
Diffstat (limited to 'net/sched/act_vlan.c')
-rw-r--r-- | net/sched/act_vlan.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/sched/act_vlan.c b/net/sched/act_vlan.c index f0a08a11f54f..b075d50e0fc3 100644 --- a/net/sched/act_vlan.c +++ b/net/sched/act_vlan.c @@ -179,7 +179,8 @@ static int tcf_vlan_dump(struct sk_buff *skb, struct tc_action *a, if (v->tcfv_action == TCA_VLAN_ACT_PUSH && (nla_put_u16(skb, TCA_VLAN_PUSH_VLAN_ID, v->tcfv_push_vid) || - nla_put_be16(skb, TCA_VLAN_PUSH_VLAN_PROTOCOL, v->tcfv_push_proto))) + nla_put_be16(skb, TCA_VLAN_PUSH_VLAN_PROTOCOL, + v->tcfv_push_proto))) goto nla_put_failure; tcf_tm_dump(&t, &v->tcf_tm); |