aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/tc_act/tc_vlan.h
diff options
context:
space:
mode:
authorJiri Pirko <jiri@resnulli.us>2014-11-24 11:30:26 +0100
committerDavid S. Miller <davem@davemloft.net>2014-11-24 16:12:03 -0500
commit08dcf9fd194cf19d3b282a81cc3539202e768ca4 (patch)
treee50d07b7104419f277a6ad3bfd5587a2d4a76508 /include/net/tc_act/tc_vlan.h
parenttipc: fix sparse warnings in new nl api (diff)
downloadlinux-dev-08dcf9fd194cf19d3b282a81cc3539202e768ca4.tar.xz
linux-dev-08dcf9fd194cf19d3b282a81cc3539202e768ca4.zip
tc_vlan: fix type of tcfv_push_vid
Should be u16. So fix it to kill the sparse warning. Fixes: c7e2b9689ef8136 "sched: introduce vlan action" Signed-off-by: Jiri Pirko <jiri@resnulli.us> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/tc_act/tc_vlan.h')
-rw-r--r--include/net/tc_act/tc_vlan.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/tc_act/tc_vlan.h b/include/net/tc_act/tc_vlan.h
index c809c1d2cea5..93b70ade1ff3 100644
--- a/include/net/tc_act/tc_vlan.h
+++ b/include/net/tc_act/tc_vlan.h
@@ -18,7 +18,7 @@
struct tcf_vlan {
struct tcf_common common;
int tcfv_action;
- __be16 tcfv_push_vid;
+ u16 tcfv_push_vid;
__be16 tcfv_push_proto;
};
#define to_vlan(a) \