Browse Source

Bluetooth: Add missing response structure for HCI Delete Stored Link Key

This patch adds this missing structure for processing the result of the
HCI Delete Stored Link Key command.

Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Marcel Holtmann 10 years ago
parent
commit
039d4e410c
1 changed files with 4 additions and 0 deletions
  1. 4 0
      include/net/bluetooth/hci.h

+ 4 - 0
include/net/bluetooth/hci.h

@@ -871,6 +871,10 @@ struct hci_cp_delete_stored_link_key {
 	bdaddr_t bdaddr;
 	bdaddr_t bdaddr;
 	__u8     delete_all;
 	__u8     delete_all;
 } __packed;
 } __packed;
+struct hci_rp_delete_stored_link_key {
+	__u8     status;
+	__u8     num_keys;
+} __packed;
 
 
 #define HCI_MAX_NAME_LENGTH		248
 #define HCI_MAX_NAME_LENGTH		248