diff options
author | Juuso Oikarinen <juuso.oikarinen@nokia.com> | 2009-12-11 08:41:06 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-12-28 16:31:35 -0500 |
commit | 830fb67b8e37fb03cf703b4e1217fe30ce32d579 (patch) | |
tree | 475d121a2ac44bcf33e6bb82f8011a53ddbb56a8 /drivers/net/wireless/wl12xx/wl1271_init.c | |
parent | ec078d943b89c03e55ac9c8b28f39256d4d4045e (diff) |
wl1271: Fix supported rate management
Previously, only basic rates were used for data transmission - resulting in
reduced transfer rates. This patch takes enables the firmware to take advantage
of the full set of data rates supported by the AP.
Signed-off-by: Juuso Oikarinen <juuso.oikarinen@nokia.com>
Reviewed-by: Luciano Coelho <luciano.coelho@nokia.com>
Signed-off-by: Luciano Coelho <luciano.coelho@nokia.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/wl12xx/wl1271_init.c')
-rw-r--r-- | drivers/net/wireless/wl12xx/wl1271_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/wl12xx/wl1271_init.c b/drivers/net/wireless/wl12xx/wl1271_init.c index c67889dd18fc..3b4ed070f439 100644 --- a/drivers/net/wireless/wl12xx/wl1271_init.c +++ b/drivers/net/wireless/wl12xx/wl1271_init.c | |||
@@ -284,7 +284,7 @@ int wl1271_hw_init(struct wl1271 *wl) | |||
284 | goto out_free_memmap; | 284 | goto out_free_memmap; |
285 | 285 | ||
286 | /* Configure TX rate classes */ | 286 | /* Configure TX rate classes */ |
287 | ret = wl1271_acx_rate_policies(wl, CONF_TX_RATE_MASK_BASIC); | 287 | ret = wl1271_acx_rate_policies(wl); |
288 | if (ret < 0) | 288 | if (ret < 0) |
289 | goto out_free_memmap; | 289 | goto out_free_memmap; |
290 | 290 | ||