diff options
author | Jiri Pirko <jiri@resnulli.us> | 2014-11-24 11:30:26 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-11-24 16:12:03 -0500 |
commit | 08dcf9fd194cf19d3b282a81cc3539202e768ca4 (patch) | |
tree | e50d07b7104419f277a6ad3bfd5587a2d4a76508 /include/net/tc_act | |
parent | d8182804cfd6503e73dc1c0a409903412a389541 (diff) | |
download | linux-08dcf9fd194cf19d3b282a81cc3539202e768ca4.tar.bz2 |
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')
-rw-r--r-- | include/net/tc_act/tc_vlan.h | 2 |
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) \ |