diff options
author | Simon Wunderlich <[email protected]> | 2013-10-07 16:41:07 +0100 |
---|---|---|
committer | John W. Linville <[email protected]> | 2013-11-07 16:28:51 -0500 |
commit | 3c57e865cfb2dcbb48fdfa08e7d4e3479e9b40f0 (patch) | |
tree | 1e907e9f575ad676b722387ee03aeb81e938a74d | |
parent | 6b732323c1e1ced5c76350bfef2cc8c233f9dcb9 (diff) |
ath9k: enable DFS for IBSS mode
Signed-off-by: Simon Wunderlich <[email protected]>
Signed-off-by: Mathias Kretschmer <[email protected]>
Signed-off-by: John W. Linville <[email protected]>
-rw-r--r-- | drivers/net/wireless/ath/ath9k/init.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/init.c b/drivers/net/wireless/ath/ath9k/init.c index e89db64532f5..d8643ebabd30 100644 --- a/drivers/net/wireless/ath/ath9k/init.c +++ b/drivers/net/wireless/ath/ath9k/init.c @@ -845,7 +845,8 @@ static const struct ieee80211_iface_limit if_limits[] = { }; static const struct ieee80211_iface_limit if_dfs_limits[] = { - { .max = 1, .types = BIT(NL80211_IFTYPE_AP) }, + { .max = 1, .types = BIT(NL80211_IFTYPE_AP) | + BIT(NL80211_IFTYPE_ADHOC) }, }; static const struct ieee80211_iface_combination if_comb[] = { |