diff options
Diffstat (limited to 'include/net/bluetooth/hci.h')
| -rw-r--r-- | include/net/bluetooth/hci.h | 10 | 
1 files changed, 10 insertions, 0 deletions
diff --git a/include/net/bluetooth/hci.h b/include/net/bluetooth/hci.h index d95da83cb1b0..7ca6690355ea 100644 --- a/include/net/bluetooth/hci.h +++ b/include/net/bluetooth/hci.h @@ -1202,6 +1202,16 @@ struct hci_rp_read_clock {  	__le16   accuracy;  } __packed; +#define HCI_OP_READ_ENC_KEY_SIZE	0x1408 +struct hci_cp_read_enc_key_size { +	__le16   handle; +} __packed; +struct hci_rp_read_enc_key_size { +	__u8     status; +	__le16   handle; +	__u8     key_size; +} __packed; +  #define HCI_OP_READ_LOCAL_AMP_INFO	0x1409  struct hci_rp_read_local_amp_info {  	__u8     status;  |