diff options
author | Juuso Oikarinen <juuso.oikarinen@nokia.com> | 2009-11-02 13:22:09 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-11-02 15:43:31 -0500 |
commit | 605351e2220bd7960a55d6d7903f87f11f419f4e (patch) | |
tree | 9fc7a479fa143e796d2b4d8d2aef705ceed28ba6 /drivers/net/wireless/wl12xx | |
parent | c6317a548d839e6f518649a4e7e9aa30b55d509a (diff) |
wl1271: Increase TX power value
Currently, to avoid distortions, the TX power level has been hardcoded
to a low value. The value is slightly too low for good functionality, so
we increase it from 7dB to 12dB.
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')
-rw-r--r-- | drivers/net/wireless/wl12xx/wl1271_acx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/wl12xx/wl1271_acx.c b/drivers/net/wireless/wl12xx/wl1271_acx.c index bf5a8680a462..5cc89bbdac7a 100644 --- a/drivers/net/wireless/wl12xx/wl1271_acx.c +++ b/drivers/net/wireless/wl12xx/wl1271_acx.c | |||
@@ -141,7 +141,7 @@ int wl1271_acx_tx_power(struct wl1271 *wl, int power) | |||
141 | * calibration, to avoid distortions | 141 | * calibration, to avoid distortions |
142 | */ | 142 | */ |
143 | /* acx->current_tx_power = power * 10; */ | 143 | /* acx->current_tx_power = power * 10; */ |
144 | acx->current_tx_power = 70; | 144 | acx->current_tx_power = 120; |
145 | 145 | ||
146 | ret = wl1271_cmd_configure(wl, DOT11_CUR_TX_PWR, acx, sizeof(*acx)); | 146 | ret = wl1271_cmd_configure(wl, DOT11_CUR_TX_PWR, acx, sizeof(*acx)); |
147 | if (ret < 0) { | 147 | if (ret < 0) { |