diff options
author | Jouni Malinen <jouni.malinen@atheros.com> | 2009-12-29 12:59:45 +0200 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-01-12 13:51:23 -0500 |
commit | 13ae75b103e07304a34ab40c9136e9f53e06475c (patch) | |
tree | 61cfd1471cdefe8cf1a3da12b4b99aafc2770f76 /include/net | |
parent | 37eb0b164cf9fa9f70c8500926f5cde7c652f48e (diff) | |
download | kernel_samsung_smdk4412-13ae75b103e07304a34ab40c9136e9f53e06475c.zip kernel_samsung_smdk4412-13ae75b103e07304a34ab40c9136e9f53e06475c.tar.gz kernel_samsung_smdk4412-13ae75b103e07304a34ab40c9136e9f53e06475c.tar.bz2 |
nl80211: New command for setting TX rate mask for rate control
Add a new NL80211_CMD_SET_TX_BITRATE_MASK command and related
attributes to provide support for setting TX rate mask for rate
control. This uses the existing cfg80211 set_bitrate_mask operation
that was previously used only with WEXT compat code (SIOCSIWRATE). The
nl80211 command allows more generic configuration of allowed rates as
a mask instead of fixed/max rate.
Signed-off-by: Jouni Malinen <jouni.malinen@atheros.com>
Acked-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/cfg80211.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h index 22e062a..0d73441 100644 --- a/include/net/cfg80211.h +++ b/include/net/cfg80211.h @@ -39,8 +39,8 @@ * @IEEE80211_BAND_5GHZ: around 5GHz band (4.9-5.7) */ enum ieee80211_band { - IEEE80211_BAND_2GHZ, - IEEE80211_BAND_5GHZ, + IEEE80211_BAND_2GHZ = NL80211_BAND_2GHZ, + IEEE80211_BAND_5GHZ = NL80211_BAND_5GHZ, /* keep last */ IEEE80211_NUM_BANDS |