aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2014-07-01 08:11:19 -0400
committerMarcel Holtmann <marcel@holtmann.org>2014-07-03 11:42:53 -0400
commit42bd6a56ed1ab4b2cb50f4d4e674874da9b47f46 (patch)
tree66142667ee8e1ce3ef4c74b6c7b7d5123f6c6ea8
parentd06b50ce14119acb04773a9808ccff5d1767b7e4 (diff)
Bluetooth: Fix merge of advertising data and scan response data
The advertising data and scan response data are merged in the wrong order. It should be advertsing data first and then scan response data and not the other way around. Signed-off-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Johan Hedberg <johan.hedberg@intel.com> Cc: stable@vger.kernel.org # 3.16
-rw-r--r--net/bluetooth/hci_event.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c
index fe7a54b65e55..ea155183c1d6 100644
--- a/net/bluetooth/hci_event.c
+++ b/net/bluetooth/hci_event.c
@@ -4270,8 +4270,8 @@ static void process_adv_report(struct hci_dev *hdev, u8 type, bdaddr_t *bdaddr,
4270 * sending a merged device found event. 4270 * sending a merged device found event.
4271 */ 4271 */
4272 mgmt_device_found(hdev, &d->last_adv_addr, LE_LINK, 4272 mgmt_device_found(hdev, &d->last_adv_addr, LE_LINK,
4273 d->last_adv_addr_type, NULL, rssi, 0, 1, data, len, 4273 d->last_adv_addr_type, NULL, rssi, 0, 1,
4274 d->last_adv_data, d->last_adv_data_len); 4274 d->last_adv_data, d->last_adv_data_len, data, len);
4275 clear_pending_adv_report(hdev); 4275 clear_pending_adv_report(hdev);
4276} 4276}
4277 4277