diff options
author | Andrey Yurovsky <andrey@cozybit.com> | 2008-07-18 00:12:24 +0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-08-23 00:29:49 +0400 |
commit | 8e5f3d0aaa3ae5305613553f869727b0361cd472 (patch) | |
tree | b13d1e9d08cbbea93066bdc2be7d4f7dbb6eff02 /drivers/net/wireless/ath5k/hw.c | |
parent | d92a8e81e097968d8f2bac0581a0a43bff14b8f0 (diff) | |
download | linux-8e5f3d0aaa3ae5305613553f869727b0361cd472.tar.xz |
ath5k: add Mesh Point support
This enables draft-802.11s Mesh Point operation. For that we need mesh
beaconing. Tested with AR5212/AR5213 PCI card against Zydas and b43 mesh
nodes.
Signed-off-by: Andrey Yurovsky <andrey@cozybit.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath5k/hw.c')
-rw-r--r-- | drivers/net/wireless/ath5k/hw.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath5k/hw.c b/drivers/net/wireless/ath5k/hw.c index ad1a5b422c8c..b335d3323057 100644 --- a/drivers/net/wireless/ath5k/hw.c +++ b/drivers/net/wireless/ath5k/hw.c @@ -2387,6 +2387,7 @@ int ath5k_hw_set_opmode(struct ath5k_hw *ah) break; case IEEE80211_IF_TYPE_AP: + case IEEE80211_IF_TYPE_MESH_POINT: pcu_reg |= AR5K_STA_ID1_AP | AR5K_STA_ID1_RTS_DEF_ANTENNA | (ah->ah_version == AR5K_AR5210 ? AR5K_STA_ID1_NO_PSPOLL : 0); |