mirror of https://gitee.com/openkylin/linux.git
mwifiex: update signal strength in mBm units
During wiphy registration signal_type is initialized to CFG80211_SIGNAL_TYPE_MBM. So convert signal strength from dBm to mBm. Also, the value is absolute. Make it negative before sending to cfg80211. Signed-off-by: Amitkumar Karwar <akarwar@marvell.com> Signed-off-by: Bing Zhao <bzhao@marvell.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
d17087e78d
commit
c9919be642
|
@ -1667,8 +1667,9 @@ int mwifiex_ret_802_11_scan(struct mwifiex_private *priv,
|
|||
|
||||
memcpy(bssid, bcn_param->bssid, ETH_ALEN);
|
||||
|
||||
rssi = (s32) (bcn_param->rssi);
|
||||
dev_dbg(adapter->dev, "info: InterpretIE: RSSI=%02X\n", rssi);
|
||||
rssi = (s32) bcn_param->rssi;
|
||||
rssi = (-rssi) * 100; /* Convert dBm to mBm */
|
||||
dev_dbg(adapter->dev, "info: InterpretIE: RSSI=%d\n", rssi);
|
||||
|
||||
beacon_period = le16_to_cpu(bcn_param->beacon_period);
|
||||
|
||||
|
|
Loading…
Reference in New Issue