aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/bluetooth/hci.h
diff options
context:
space:
mode:
authorAndre Guedes <andre.guedes@openbossa.org>2011-12-02 07:13:31 -0500
committerGustavo F. Padovan <padovan@profusion.mobi>2011-12-02 07:19:31 -0500
commit07f7fa5db1e65a27066c8ebf9fc676a4168e07f4 (patch)
treea9a57514cf4c815ecb158ad3f5b5f87145dcf1b6 /include/net/bluetooth/hci.h
parentd23264a896a931c4b355c102d8e9d46649195ba4 (diff)
Bluetooth: LE Set Scan Parameter Command
This patch adds the parameter struct and the command complete event handler to the LE Set Scan Parameter HCI command. Signed-off-by: Andre Guedes <andre.guedes@openbossa.org> Acked-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'include/net/bluetooth/hci.h')
-rw-r--r--include/net/bluetooth/hci.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/net/bluetooth/hci.h b/include/net/bluetooth/hci.h
index e2ed3683f1c..67ad9843034 100644
--- a/include/net/bluetooth/hci.h
+++ b/include/net/bluetooth/hci.h
@@ -782,6 +782,15 @@ struct hci_rp_le_read_buffer_size {
782 __u8 le_max_pkt; 782 __u8 le_max_pkt;
783} __packed; 783} __packed;
784 784
785#define HCI_OP_LE_SET_SCAN_PARAM 0x200b
786struct hci_cp_le_set_scan_param {
787 __u8 type;
788 __le16 interval;
789 __le16 window;
790 __u8 own_address_type;
791 __u8 filter_policy;
792} __packed;
793
785#define HCI_OP_LE_SET_SCAN_ENABLE 0x200c 794#define HCI_OP_LE_SET_SCAN_ENABLE 0x200c
786struct hci_cp_le_set_scan_enable { 795struct hci_cp_le_set_scan_enable {
787 __u8 enable; 796 __u8 enable;