Browse Source

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>
Jiri Pirko 11 years ago
parent
commit
08dcf9fd19
1 changed files with 1 additions and 1 deletions
  1. 1 1
      include/net/tc_act/tc_vlan.h

+ 1 - 1
include/net/tc_act/tc_vlan.h

@@ -18,7 +18,7 @@
 struct tcf_vlan {
 struct tcf_vlan {
 	struct tcf_common	common;
 	struct tcf_common	common;
 	int			tcfv_action;
 	int			tcfv_action;
-	__be16			tcfv_push_vid;
+	u16			tcfv_push_vid;
 	__be16			tcfv_push_proto;
 	__be16			tcfv_push_proto;
 };
 };
 #define to_vlan(a) \
 #define to_vlan(a) \