summaryrefslogtreecommitdiffstats
path: root/include/net/bluetooth
diff options
context:
space:
mode:
authorMarcel Holtmann2013-10-16 09:16:47 +0200
committerJohan Hedberg2013-10-16 09:30:05 +0200
commitf8e808bd6853f1ada3614f99c95beac1bc2f2140 (patch)
treebcbc5e90b4d99c05ff604a6f035376f0622eff3f /include/net/bluetooth
parentBluetooth: Rename create_ad into create_adv_data (diff)
downloadkernel-qcow2-linux-f8e808bd6853f1ada3614f99c95beac1bc2f2140.tar.gz
kernel-qcow2-linux-f8e808bd6853f1ada3614f99c95beac1bc2f2140.tar.xz
kernel-qcow2-linux-f8e808bd6853f1ada3614f99c95beac1bc2f2140.zip
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 'include/net/bluetooth')
-rw-r--r--include/net/bluetooth/hci_core.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h
index 0a3a10a76b6c..d987c795ba14 100644
--- a/include/net/bluetooth/hci_core.h
+++ b/include/net/bluetooth/hci_core.h
@@ -283,6 +283,8 @@ struct hci_dev {
__s8 adv_tx_power;
__u8 adv_data[HCI_MAX_AD_LENGTH];
__u8 adv_data_len;
+ __u8 scan_rsp_data[HCI_MAX_AD_LENGTH];
+ __u8 scan_rsp_data_len;
int (*open)(struct hci_dev *hdev);
int (*close)(struct hci_dev *hdev);