diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2013-03-19 04:47:30 -0400 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2013-03-19 04:47:30 -0400 |
commit | 0d4a42f6bd298e826620585e766a154ab460617a (patch) | |
tree | 406d8f7778691d858dbe3e48e4bbb10e99c0a58a /include/net/bluetooth/hci.h | |
parent | d62b4892f3d9f7dd2002e5309be10719d6805b0f (diff) | |
parent | a937536b868b8369b98967929045f1df54234323 (diff) |
Merge tag 'v3.9-rc3' into drm-intel-next-queued
Backmerge so that I can merge Imre Deak's coalesced sg entries fixes,
which depend upon the new for_each_sg_page introduce in
commit a321e91b6d73ed011ffceed384c40d2785cf723b
Author: Imre Deak <imre.deak@intel.com>
Date: Wed Feb 27 17:02:56 2013 -0800
lib/scatterlist: add simple page iterator
The merge itself is just two trivial conflicts:
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'include/net/bluetooth/hci.h')
-rw-r--r-- | include/net/bluetooth/hci.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/include/net/bluetooth/hci.h b/include/net/bluetooth/hci.h index 45eee08157bb..7f12c25f1fca 100644 --- a/include/net/bluetooth/hci.h +++ b/include/net/bluetooth/hci.h | |||
@@ -943,6 +943,12 @@ struct hci_rp_le_read_buffer_size { | |||
943 | __u8 le_max_pkt; | 943 | __u8 le_max_pkt; |
944 | } __packed; | 944 | } __packed; |
945 | 945 | ||
946 | #define HCI_OP_LE_READ_LOCAL_FEATURES 0x2003 | ||
947 | struct hci_rp_le_read_local_features { | ||
948 | __u8 status; | ||
949 | __u8 features[8]; | ||
950 | } __packed; | ||
951 | |||
946 | #define HCI_OP_LE_READ_ADV_TX_POWER 0x2007 | 952 | #define HCI_OP_LE_READ_ADV_TX_POWER 0x2007 |
947 | struct hci_rp_le_read_adv_tx_power { | 953 | struct hci_rp_le_read_adv_tx_power { |
948 | __u8 status; | 954 | __u8 status; |
@@ -995,6 +1001,12 @@ struct hci_cp_le_create_conn { | |||
995 | 1001 | ||
996 | #define HCI_OP_LE_CREATE_CONN_CANCEL 0x200e | 1002 | #define HCI_OP_LE_CREATE_CONN_CANCEL 0x200e |
997 | 1003 | ||
1004 | #define HCI_OP_LE_READ_WHITE_LIST_SIZE 0x200f | ||
1005 | struct hci_rp_le_read_white_list_size { | ||
1006 | __u8 status; | ||
1007 | __u8 size; | ||
1008 | } __packed; | ||
1009 | |||
998 | #define HCI_OP_LE_CONN_UPDATE 0x2013 | 1010 | #define HCI_OP_LE_CONN_UPDATE 0x2013 |
999 | struct hci_cp_le_conn_update { | 1011 | struct hci_cp_le_conn_update { |
1000 | __le16 handle; | 1012 | __le16 handle; |
@@ -1033,6 +1045,12 @@ struct hci_rp_le_ltk_neg_reply { | |||
1033 | __le16 handle; | 1045 | __le16 handle; |
1034 | } __packed; | 1046 | } __packed; |
1035 | 1047 | ||
1048 | #define HCI_OP_LE_READ_SUPPORTED_STATES 0x201c | ||
1049 | struct hci_rp_le_read_supported_states { | ||
1050 | __u8 status; | ||
1051 | __u8 le_states[8]; | ||
1052 | } __packed; | ||
1053 | |||
1036 | /* ---- HCI Events ---- */ | 1054 | /* ---- HCI Events ---- */ |
1037 | #define HCI_EV_INQUIRY_COMPLETE 0x01 | 1055 | #define HCI_EV_INQUIRY_COMPLETE 0x01 |
1038 | 1056 | ||