diff options
Diffstat (limited to 'net/wireless/nl80211.h')
-rw-r--r-- | net/wireless/nl80211.h | 38 |
1 files changed, 12 insertions, 26 deletions
diff --git a/net/wireless/nl80211.h b/net/wireless/nl80211.h index e65a3c38c52f..b77af4ab80be 100644 --- a/net/wireless/nl80211.h +++ b/net/wireless/nl80211.h | |||
@@ -3,7 +3,6 @@ | |||
3 | 3 | ||
4 | #include "core.h" | 4 | #include "core.h" |
5 | 5 | ||
6 | #ifdef CONFIG_NL80211 | ||
7 | extern int nl80211_init(void); | 6 | extern int nl80211_init(void); |
8 | extern void nl80211_exit(void); | 7 | extern void nl80211_exit(void); |
9 | extern void nl80211_notify_dev_rename(struct cfg80211_registered_device *rdev); | 8 | extern void nl80211_notify_dev_rename(struct cfg80211_registered_device *rdev); |
@@ -12,30 +11,17 @@ extern void nl80211_send_scan_done(struct cfg80211_registered_device *rdev, | |||
12 | extern void nl80211_send_scan_aborted(struct cfg80211_registered_device *rdev, | 11 | extern void nl80211_send_scan_aborted(struct cfg80211_registered_device *rdev, |
13 | struct net_device *netdev); | 12 | struct net_device *netdev); |
14 | extern void nl80211_send_reg_change_event(struct regulatory_request *request); | 13 | extern void nl80211_send_reg_change_event(struct regulatory_request *request); |
15 | #else | 14 | extern void nl80211_send_rx_auth(struct cfg80211_registered_device *rdev, |
16 | static inline int nl80211_init(void) | 15 | struct net_device *netdev, |
17 | { | 16 | const u8 *buf, size_t len); |
18 | return 0; | 17 | extern void nl80211_send_rx_assoc(struct cfg80211_registered_device *rdev, |
19 | } | 18 | struct net_device *netdev, |
20 | static inline void nl80211_exit(void) | 19 | const u8 *buf, size_t len); |
21 | { | 20 | extern void nl80211_send_rx_deauth(struct cfg80211_registered_device *rdev, |
22 | } | 21 | struct net_device *netdev, |
23 | static inline void nl80211_notify_dev_rename( | 22 | const u8 *buf, size_t len); |
24 | struct cfg80211_registered_device *rdev) | 23 | extern void nl80211_send_rx_disassoc(struct cfg80211_registered_device *rdev, |
25 | { | 24 | struct net_device *netdev, |
26 | } | 25 | const u8 *buf, size_t len); |
27 | static inline void | ||
28 | nl80211_send_scan_done(struct cfg80211_registered_device *rdev, | ||
29 | struct net_device *netdev) | ||
30 | {} | ||
31 | static inline void nl80211_send_scan_aborted( | ||
32 | struct cfg80211_registered_device *rdev, | ||
33 | struct net_device *netdev) | ||
34 | {} | ||
35 | static inline void | ||
36 | nl80211_send_reg_change_event(struct regulatory_request *request) | ||
37 | { | ||
38 | } | ||
39 | #endif /* CONFIG_NL80211 */ | ||
40 | 26 | ||
41 | #endif /* __NET_WIRELESS_NL80211_H */ | 27 | #endif /* __NET_WIRELESS_NL80211_H */ |