Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 1 | #ifndef __NET_WIRELESS_NL80211_H |
| 2 | #define __NET_WIRELESS_NL80211_H |
| 3 | |
| 4 | #include "core.h" |
| 5 | |
| 6 | #ifdef CONFIG_NL80211 |
| 7 | extern int nl80211_init(void); |
| 8 | extern void nl80211_exit(void); |
| 9 | extern void nl80211_notify_dev_rename(struct cfg80211_registered_device *rdev); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 10 | extern void nl80211_send_scan_done(struct cfg80211_registered_device *rdev, |
| 11 | struct net_device *netdev); |
| 12 | extern void nl80211_send_scan_aborted(struct cfg80211_registered_device *rdev, |
| 13 | struct net_device *netdev); |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 14 | #else |
| 15 | static inline int nl80211_init(void) |
| 16 | { |
| 17 | return 0; |
| 18 | } |
| 19 | static inline void nl80211_exit(void) |
| 20 | { |
| 21 | } |
| 22 | static inline void nl80211_notify_dev_rename( |
| 23 | struct cfg80211_registered_device *rdev) |
| 24 | { |
| 25 | } |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 26 | static inline void |
| 27 | nl80211_send_scan_done(struct cfg80211_registered_device *rdev, |
| 28 | struct net_device *netdev) |
| 29 | {} |
Randy Dunlap | 13e967b | 2009-02-13 16:39:35 -0800 | [diff] [blame^] | 30 | static inline void nl80211_send_scan_aborted( |
| 31 | struct cfg80211_registered_device *rdev, |
| 32 | struct net_device *netdev) |
| 33 | {} |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 34 | #endif /* CONFIG_NL80211 */ |
| 35 | |
| 36 | #endif /* __NET_WIRELESS_NL80211_H */ |