aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/hostap/hostap_80211.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/wireless/hostap/hostap_80211.h')
-rw-r--r--drivers/net/wireless/hostap/hostap_80211.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/drivers/net/wireless/hostap/hostap_80211.h b/drivers/net/wireless/hostap/hostap_80211.h
index 2e9fb0f383f..7f9d8d976aa 100644
--- a/drivers/net/wireless/hostap/hostap_80211.h
+++ b/drivers/net/wireless/hostap/hostap_80211.h
@@ -3,6 +3,7 @@
3 3
4#include <linux/types.h> 4#include <linux/types.h>
5#include <linux/skbuff.h> 5#include <linux/skbuff.h>
6#include <linux/netdevice.h>
6 7
7struct hostap_ieee80211_mgmt { 8struct hostap_ieee80211_mgmt {
8 __le16 frame_control; 9 __le16 frame_control;
@@ -85,8 +86,11 @@ void hostap_dump_rx_80211(const char *name, struct sk_buff *skb,
85 struct hostap_80211_rx_status *rx_stats); 86 struct hostap_80211_rx_status *rx_stats);
86 87
87void hostap_dump_tx_80211(const char *name, struct sk_buff *skb); 88void hostap_dump_tx_80211(const char *name, struct sk_buff *skb);
88int hostap_data_start_xmit(struct sk_buff *skb, struct net_device *dev); 89netdev_tx_t hostap_data_start_xmit(struct sk_buff *skb,
89int hostap_mgmt_start_xmit(struct sk_buff *skb, struct net_device *dev); 90 struct net_device *dev);
90int hostap_master_start_xmit(struct sk_buff *skb, struct net_device *dev); 91netdev_tx_t hostap_mgmt_start_xmit(struct sk_buff *skb,
92 struct net_device *dev);
93netdev_tx_t hostap_master_start_xmit(struct sk_buff *skb,
94 struct net_device *dev);
91 95
92#endif /* HOSTAP_80211_H */ 96#endif /* HOSTAP_80211_H */