diff options
author | Andrey Yurovsky <andrey@cozybit.com> | 2008-12-20 04:55:34 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-01-29 15:58:35 -0500 |
commit | a07dbea210e146aedf8929cdabe082b58696260c (patch) | |
tree | feea78d288b0d004b253e52bbe6fa528258feeed /drivers/net/wireless/rt2x00/rt2x00config.c | |
parent | 5352ff6510422d9a9bf13b7272f865eb53247f4d (diff) |
rt2x00: Add mesh support
This adds initial support for Mesh Point mode. For this we tell mac80211 that
we support NL80211_IFTYPE_MESH_POINT. We also need to send beacons. mac80211
will configure our RX filter accordingly.
Signed-off-by: Andrey Yurovsky <andrey@cozybit.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 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2x00config.c b/drivers/net/wireless/rt2x00/rt2x00config.c index 2f4cb8de9981..a35265cc7540 100644 --- a/drivers/net/wireless/rt2x00/rt2x00config.c +++ b/drivers/net/wireless/rt2x00/rt2x00config.c | |||
@@ -42,6 +42,7 @@ void rt2x00lib_config_intf(struct rt2x00_dev *rt2x00dev, | |||
42 | switch (type) { | 42 | switch (type) { |
43 | case NL80211_IFTYPE_ADHOC: | 43 | case NL80211_IFTYPE_ADHOC: |
44 | case NL80211_IFTYPE_AP: | 44 | case NL80211_IFTYPE_AP: |
45 | case NL80211_IFTYPE_MESH_POINT: | ||
45 | conf.sync = TSF_SYNC_BEACON; | 46 | conf.sync = TSF_SYNC_BEACON; |
46 | break; | 47 | break; |
47 | case NL80211_IFTYPE_STATION: | 48 | case NL80211_IFTYPE_STATION: |