aboutsummaryrefslogtreecommitdiffstats
path: root/net/bluetooth/hci_event.c
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2013-10-16 03:16:47 -0400
committerJohan Hedberg <johan.hedberg@intel.com>2013-10-16 03:30:05 -0400
commitf8e808bd6853f1ada3614f99c95beac1bc2f2140 (patch)
treebcbc5e90b4d99c05ff604a6f035376f0622eff3f /net/bluetooth/hci_event.c
parent46cad2edb13be71ae11da896411db8a42b82d555 (diff)
Bluetooth: Store scan response data in HCI device
The scan response data needs to be stored in HCI device and so add a buffer for it and also ensure to clear it when resetting the controller. Signed-off-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'net/bluetooth/hci_event.c')
-rw-r--r--net/bluetooth/hci_event.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c
index 7450626b7704..e71c98fedc9b 100644
--- a/net/bluetooth/hci_event.c
+++ b/net/bluetooth/hci_event.c
@@ -195,6 +195,9 @@ static void hci_cc_reset(struct hci_dev *hdev, struct sk_buff *skb)
195 195
196 memset(hdev->adv_data, 0, sizeof(hdev->adv_data)); 196 memset(hdev->adv_data, 0, sizeof(hdev->adv_data));
197 hdev->adv_data_len = 0; 197 hdev->adv_data_len = 0;
198
199 memset(hdev->scan_rsp_data, 0, sizeof(hdev->scan_rsp_data));
200 hdev->scan_rsp_data_len = 0;
198} 201}
199 202
200static void hci_cc_write_local_name(struct hci_dev *hdev, struct sk_buff *skb) 203static void hci_cc_write_local_name(struct hci_dev *hdev, struct sk_buff *skb)