forked from Minki/linux
633e24ed95
The scan capability added to cfg80211/nl80211 introduced a dependency on nl80211 by cfg80211. We can thus no longer have just cfg80211 without nl80211. Specifically, cfg80211_scan_done() calls nl80211_send_scan_aborted() or nl80211_send_scan_done(). Now we remove the option for user to select nl80211. It will always be compiled if user selects cfg80211. Signed-off-by: Reinette Chatre <reinette.chatre@intel.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
16 lines
575 B
C
16 lines
575 B
C
#ifndef __NET_WIRELESS_NL80211_H
|
|
#define __NET_WIRELESS_NL80211_H
|
|
|
|
#include "core.h"
|
|
|
|
extern int nl80211_init(void);
|
|
extern void nl80211_exit(void);
|
|
extern void nl80211_notify_dev_rename(struct cfg80211_registered_device *rdev);
|
|
extern void nl80211_send_scan_done(struct cfg80211_registered_device *rdev,
|
|
struct net_device *netdev);
|
|
extern void nl80211_send_scan_aborted(struct cfg80211_registered_device *rdev,
|
|
struct net_device *netdev);
|
|
extern void nl80211_send_reg_change_event(struct regulatory_request *request);
|
|
|
|
#endif /* __NET_WIRELESS_NL80211_H */
|