]> git.karo-electronics.de Git - karo-tx-linux.git/commit
b43: N-PHY: use more bits for offset in RSSI calibration
authorRafał Miłecki <zajec5@gmail.com>
Wed, 27 Mar 2013 07:37:08 +0000 (08:37 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 5 Apr 2013 16:25:48 +0000 (09:25 -0700)
commit225e4f15b55729554988b843eef41c990a04b0bd
tree6b5f271219aa7a42e15f6ffe57ca14ff6df4f3a7
parentdf27b773250ee2a3f5ff0ac87bf912feb8c4a1b4
b43: N-PHY: use more bits for offset in RSSI calibration

commit 2e1253d640eb7f8707d2591c93097c1e9f9c71d5 upstream.

When calculating "offset" for final RSSI calibration we're using numbers
bigger than s8 can hold. We have for example:
offset[j] = 232 - poll_results[j];
formula. If poll_results[j] is small enough (it usually is) we treat
number's bit as a sign bit. For example 232 - 1 becomes:
0xE8 - 0x1 = 0xE7, which is not 231 but -25.

This code was introduced in e0c9a0219a8f542e3946fe972a68aacf8c3f906c
and caused stability regression on some cards, for ex. BCM4322.

Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/b43/phy_n.c