mirror of https://github.com/proski/madwifi
Don't reference vlan_group without IEEE80211_VLAN_TAG_USED set
struct vlan_group will be removed in Linux 3.3. git-svn-id: http://madwifi-project.org/svn/madwifi/trunk@4177 0192ed92-7a03-0410-a25b-9323aeb14dbd
This commit is contained in:
parent
50d74a9a21
commit
35db352fc7
|
@ -643,8 +643,11 @@ int ieee80211_ioctl_create_vap(struct ieee80211com *, struct ifreq *,
|
||||||
struct net_device *);
|
struct net_device *);
|
||||||
struct ieee80211vap *ieee80211_create_vap(struct ieee80211com *, char *,
|
struct ieee80211vap *ieee80211_create_vap(struct ieee80211com *, char *,
|
||||||
struct net_device *, int, int);
|
struct net_device *, int, int);
|
||||||
|
|
||||||
|
#if IEEE80211_VLAN_TAG_USED
|
||||||
void ieee80211_vlan_register(struct net_device *dev, struct vlan_group *grp);
|
void ieee80211_vlan_register(struct net_device *dev, struct vlan_group *grp);
|
||||||
void ieee80211_vlan_add_vid(struct net_device *dev, unsigned short vid);
|
void ieee80211_vlan_add_vid(struct net_device *dev, unsigned short vid);
|
||||||
void ieee80211_vlan_kill_vid(struct net_device *dev, unsigned short vid);
|
void ieee80211_vlan_kill_vid(struct net_device *dev, unsigned short vid);
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif /* _NET80211_IEEE80211_LINUX_H_ */
|
#endif /* _NET80211_IEEE80211_LINUX_H_ */
|
||||||
|
|
|
@ -113,8 +113,10 @@ int ieee80211_skb_references(void);
|
||||||
|
|
||||||
#ifdef IEEE80211_DEBUG_REFCNT
|
#ifdef IEEE80211_DEBUG_REFCNT
|
||||||
|
|
||||||
|
#if IEEE80211_VLAN_TAG_USED
|
||||||
int vlan_hwaccel_rx_debug(struct sk_buff *skb, struct vlan_group *grp,
|
int vlan_hwaccel_rx_debug(struct sk_buff *skb, struct vlan_group *grp,
|
||||||
unsigned short vlan_tag, const char *func, int line);
|
unsigned short vlan_tag, const char *func, int line);
|
||||||
|
#endif
|
||||||
int netif_rx_debug(struct sk_buff *skb, const char *func, int line);
|
int netif_rx_debug(struct sk_buff *skb, const char *func, int line);
|
||||||
struct sk_buff *alloc_skb_debug(unsigned int length, gfp_t gfp_mask,
|
struct sk_buff *alloc_skb_debug(unsigned int length, gfp_t gfp_mask,
|
||||||
const char *func, int line);
|
const char *func, int line);
|
||||||
|
|
Loading…
Reference in New Issue