-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cfg80211: combine iwfreq implementations
Until now we implemented iwfreq for managed mode, we needed to keep the implementations separate, but now that we have all versions implemented we can combine them and export just one handler. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
- Loading branch information
Johannes Berg
authored and
John W. Linville
committed
Jul 29, 2009
1 parent
a7bc376
commit 0e82ffe
Showing
9 changed files
with
91 additions
and
126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#ifndef __WEXT_COMPAT | ||
#define __WEXT_COMPAT | ||
|
||
int cfg80211_ibss_wext_siwfreq(struct net_device *dev, | ||
struct iw_request_info *info, | ||
struct iw_freq *freq, char *extra); | ||
int cfg80211_ibss_wext_giwfreq(struct net_device *dev, | ||
struct iw_request_info *info, | ||
struct iw_freq *freq, char *extra); | ||
|
||
int cfg80211_mgd_wext_siwfreq(struct net_device *dev, | ||
struct iw_request_info *info, | ||
struct iw_freq *freq, char *extra); | ||
int cfg80211_mgd_wext_giwfreq(struct net_device *dev, | ||
struct iw_request_info *info, | ||
struct iw_freq *freq, char *extra); | ||
|
||
struct ieee80211_channel *cfg80211_wext_freq(struct wiphy *wiphy, | ||
struct iw_freq *freq); | ||
|
||
#endif /* __WEXT_COMPAT */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters