diff options
author | Bill Jordan <bjordan@rajant.com> | 2010-10-01 11:20:39 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-10-05 13:35:24 -0400 |
commit | e51f3eff9a7e17ddd749799d4291f7e33e9883b9 (patch) | |
tree | 60e3a78e72da43a107c65cbd0af93c8aaf10d694 /drivers/net/wireless/ath/ath9k/main.c | |
parent | d8ec44335c974cc8bf67ce70c63071d4e0702509 (diff) | |
download | lwn-e51f3eff9a7e17ddd749799d4291f7e33e9883b9.tar.gz lwn-e51f3eff9a7e17ddd749799d4291f7e33e9883b9.zip |
ath9k: add WDS interfaces to ath9k
Enable WDS for the ath9k driver.
Signed-off-by: Bill Jordan <bjordan@rajant.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/main.c')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath9k/main.c b/drivers/net/wireless/ath/ath9k/main.c index 49ea45896b89..e6ddf45506be 100644 --- a/drivers/net/wireless/ath/ath9k/main.c +++ b/drivers/net/wireless/ath/ath9k/main.c @@ -1374,6 +1374,9 @@ static int ath9k_add_interface(struct ieee80211_hw *hw, case NL80211_IFTYPE_STATION: ic_opmode = NL80211_IFTYPE_STATION; break; + case NL80211_IFTYPE_WDS: + ic_opmode = NL80211_IFTYPE_WDS; + break; case NL80211_IFTYPE_ADHOC: case NL80211_IFTYPE_AP: case NL80211_IFTYPE_MESH_POINT: |