diff options
author | Johan Hedberg <johan.hedberg@intel.com> | 2014-03-26 13:17:12 +0100 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2014-03-26 17:31:41 +0100 |
commit | ab0aa433e2f6c69e69b4d5a951c0b84e7b193f0d (patch) | |
tree | 431d10d0ec4b77f398b759a05dd537a976182c3f | |
parent | Bluetooth: Store also RSSI for pending advertising reports (diff) | |
download | linux-ab0aa433e2f6c69e69b4d5a951c0b84e7b193f0d.tar.xz linux-ab0aa433e2f6c69e69b4d5a951c0b84e7b193f0d.zip |
Bluetooth: Fix RSSI value in device found event from disabling scan
When sending a pending device found event triggered by disabling LE
scanning we should use the stored RSSI instead of sending a zero value.
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
-rw-r--r-- | net/bluetooth/hci_event.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c index 2ecb34f2e2ad..ddb518c62ed1 100644 --- a/net/bluetooth/hci_event.c +++ b/net/bluetooth/hci_event.c @@ -1091,8 +1091,9 @@ static void hci_cc_le_set_scan_enable(struct hci_dev *hdev, struct discovery_state *d = &hdev->discovery; mgmt_device_found(hdev, &d->last_adv_addr, LE_LINK, - d->last_adv_addr_type, NULL, 0, 0, - 1, d->last_adv_data, + d->last_adv_addr_type, NULL, + d->last_adv_rssi, 0, 1, + d->last_adv_data, d->last_adv_data_len, NULL, 0); } |