1
0
Fork 0

b43: trivial: do not report any link quality instead of invalid one

We don't want to report random quality info (new PHYs are affected).

Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
hifive-unleashed-5.1
Rafał Miłecki 2011-10-07 22:39:35 +02:00 committed by John W. Linville
parent 73a253ca98
commit 55ad5962e9
1 changed files with 7 additions and 5 deletions

View File

@ -735,11 +735,13 @@ void b43_rx(struct b43_wldev *dev, struct sk_buff *skb, const void *_rxhdr)
}
/* Link quality statistics */
if ((chanstat & B43_RX_CHAN_PHYTYPE) == B43_PHYTYPE_N) {
// s8 rssi = max(rxhdr->power0, rxhdr->power1);
//TODO: Find out what the rssi value is (dBm or percentage?)
// and also find out what the maximum possible value is.
// Fill status.ssi and status.signal fields.
if ((chanstat & B43_RX_CHAN_PHYTYPE) >= B43_PHYTYPE_N) {
/*
s8 rssi = max(rxhdr->power0, rxhdr->power1);
TODO: Find out what the rssi value is (dBm or percentage?)
and also find out what the maximum possible value is.
Fill status.ssi and status.signal fields.
*/
} else {
status.signal = b43_rssi_postprocess(dev, rxhdr->jssi,
(phystat0 & B43_RX_PHYST0_OFDM),