]> Pileus Git - ~andy/linux/commitdiff
net: vlan: fix dummy function signatures for CONFIG_VLAN=n
authorPatrick McHardy <kaber@trash.net>
Sat, 20 Apr 2013 23:51:41 +0000 (23:51 +0000)
committerDavid S. Miller <davem@davemloft.net>
Sun, 21 Apr 2013 19:56:59 +0000 (15:56 -0400)
Fix up some function signatures for CONFIG_VLAN=n that were missed during
the 802.1ad support patches.

Found by the kbuild robot.

Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/if_vlan.h

index a78f9390da87b9adb234a57198fa9ce225ccf0f7..52bd03b389625c4f449052d021547712a0022cbe 100644 (file)
@@ -104,7 +104,8 @@ extern void vlan_vids_del_by_dev(struct net_device *dev,
 extern bool vlan_uses_dev(const struct net_device *dev);
 #else
 static inline struct net_device *
-__vlan_find_dev_deep(struct net_device *real_dev, u16 vlan_id)
+__vlan_find_dev_deep(struct net_device *real_dev,
+                    __be16 vlan_proto, u16 vlan_id)
 {
        return NULL;
 }
@@ -131,12 +132,12 @@ static inline struct sk_buff *vlan_untag(struct sk_buff *skb)
        return skb;
 }
 
-static inline int vlan_vid_add(struct net_device *dev, unsigned short vid)
+static inline int vlan_vid_add(struct net_device *dev, __be16 proto, u16 vid)
 {
        return 0;
 }
 
-static inline void vlan_vid_del(struct net_device *dev, unsigned short vid)
+static inline void vlan_vid_del(struct net_device *dev, __be16 proto, u16 vid)
 {
 }