diff options
author | Helmut Schaa <helmut.schaa@googlemail.com> | 2010-07-11 06:30:13 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-07-12 16:05:37 -0400 |
commit | ab8966ddc2f7fa3e631efa7478ea2c76d6c9942f (patch) | |
tree | 748aed346dd13e8c423430a3077d61fa2cec8c84 /drivers/net/wireless/rt2x00/rt2x00config.c | |
parent | 8544df327c4c1c2bc6f2f6bf2997980d0d9a29f0 (diff) |
rt2x00: Add missing TSF sync mode for AP operation
Currently rt2x00 uses the TSF_SYNC_BEACON mode for all beaconing
interface types. However, TSF_SYNC_BEACON is meant for IBSS networks and
thus implements TSF merging in the hardware. Rename TSF_SYNC_BEACON to
TSF_SYNC_ADHOC to better express its purpose and introduce the missing
TSF sync mode TSF_SYNC_AP_NONE which should be used for beaconing modes
that don't need TSF merging.
Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com>
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/rt2x00/rt2x00config.c')
-rw-r--r-- | drivers/net/wireless/rt2x00/rt2x00config.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2x00config.c b/drivers/net/wireless/rt2x00/rt2x00config.c index 8dbd634dae27..953dc4f2c6af 100644 --- a/drivers/net/wireless/rt2x00/rt2x00config.c +++ b/drivers/net/wireless/rt2x00/rt2x00config.c | |||
@@ -41,10 +41,12 @@ void rt2x00lib_config_intf(struct rt2x00_dev *rt2x00dev, | |||
41 | 41 | ||
42 | switch (type) { | 42 | switch (type) { |
43 | case NL80211_IFTYPE_ADHOC: | 43 | case NL80211_IFTYPE_ADHOC: |
44 | conf.sync = TSF_SYNC_ADHOC; | ||
45 | break; | ||
44 | case NL80211_IFTYPE_AP: | 46 | case NL80211_IFTYPE_AP: |
45 | case NL80211_IFTYPE_MESH_POINT: | 47 | case NL80211_IFTYPE_MESH_POINT: |
46 | case NL80211_IFTYPE_WDS: | 48 | case NL80211_IFTYPE_WDS: |
47 | conf.sync = TSF_SYNC_BEACON; | 49 | conf.sync = TSF_SYNC_AP_NONE; |
48 | break; | 50 | break; |
49 | case NL80211_IFTYPE_STATION: | 51 | case NL80211_IFTYPE_STATION: |
50 | conf.sync = TSF_SYNC_INFRA; | 52 | conf.sync = TSF_SYNC_INFRA; |