aboutsummaryrefslogtreecommitdiffstats
path: root/net/8021q/vlan.h
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2014-03-12 13:04:15 -0400
committerDavid S. Miller <davem@davemloft.net>2014-03-12 15:28:06 -0400
commitf0e78826e47facd538b74e3ef13f352f2a7db004 (patch)
treef4879daa1bbea6b86100cdccb7444f910736450b /net/8021q/vlan.h
parentb338ce270ed589f8a7b62e239632baa48f947b17 (diff)
8021q: Convert uses of __constant_<foo> to <foo>
The use of __constant_<foo> has been unnecessary for quite awhile now. Make these uses consistent with the rest of the kernel. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/8021q/vlan.h')
-rw-r--r--net/8021q/vlan.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/8021q/vlan.h b/net/8021q/vlan.h
index 5704ed9c3a23..9d010a09ab98 100644
--- a/net/8021q/vlan.h
+++ b/net/8021q/vlan.h
@@ -38,9 +38,9 @@ struct vlan_info {
38static inline unsigned int vlan_proto_idx(__be16 proto) 38static inline unsigned int vlan_proto_idx(__be16 proto)
39{ 39{
40 switch (proto) { 40 switch (proto) {
41 case __constant_htons(ETH_P_8021Q): 41 case htons(ETH_P_8021Q):
42 return VLAN_PROTO_8021Q; 42 return VLAN_PROTO_8021Q;
43 case __constant_htons(ETH_P_8021AD): 43 case htons(ETH_P_8021AD):
44 return VLAN_PROTO_8021AD; 44 return VLAN_PROTO_8021AD;
45 default: 45 default:
46 BUG(); 46 BUG();