summaryrefslogtreecommitdiffstats
path: root/net/bluetooth
diff options
context:
space:
mode:
authorSzymon Janc <szymon.janc@tieto.com>2015-01-22 16:57:05 +0100
committerMarcel Holtmann <marcel@holtmann.org>2015-01-22 18:06:43 +0100
commit91200e9f3e76af2652952e73ce5d9913f1c987c6 (patch)
tree0bf3281ece9a503756226d58aa7d0f7fab7e423f /net/bluetooth
parent9a5abdaaf9d2e80e157c7a756f9d9fd933dee48e (diff)
downloadlinux-stable-91200e9f3e76af2652952e73ce5d9913f1c987c6.tar.gz
linux-stable-91200e9f3e76af2652952e73ce5d9913f1c987c6.tar.bz2
linux-stable-91200e9f3e76af2652952e73ce5d9913f1c987c6.zip
Bluetooth: Fix reporting invalid RSSI for LE devices
Start Discovery was reporting 0 RSSI for invalid RSSI only for BR/EDR devices. LE devices were reported with RSSI 127. Signed-off-by: Szymon Janc <szymon.janc@tieto.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org> Cc: stable@vger.kernel.org # 3.19+
Diffstat (limited to 'net/bluetooth')
-rw-r--r--net/bluetooth/mgmt.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c
index f5c4d2eed9a1..a619d983c078 100644
--- a/net/bluetooth/mgmt.c
+++ b/net/bluetooth/mgmt.c
@@ -7238,7 +7238,8 @@ void mgmt_device_found(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
* However when using service discovery, the value 127 will be
* returned when the RSSI is not available.
*/
- if (rssi == HCI_RSSI_INVALID && !hdev->discovery.report_invalid_rssi)
+ if (rssi == HCI_RSSI_INVALID && !hdev->discovery.report_invalid_rssi &&
+ link_type == ACL_LINK)
rssi = 0;
bacpy(&ev->addr.bdaddr, bdaddr);