aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/bluetooth/hci.h
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2015-01-12 09:21:27 -0800
committerJohan Hedberg <johan.hedberg@intel.com>2015-01-12 21:55:40 +0200
commit039d4e410c06ed446566105a0a1c6ce9cad6b56b (patch)
treed45dfa9c1e35d4176a453f824008004a13f8cc10 /include/net/bluetooth/hci.h
parentBluetooth: Read stored link key information when powering on controller (diff)
downloadlinux-dev-039d4e410c06ed446566105a0a1c6ce9cad6b56b.tar.xz
linux-dev-039d4e410c06ed446566105a0a1c6ce9cad6b56b.zip
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>
Diffstat (limited to 'include/net/bluetooth/hci.h')
-rw-r--r--include/net/bluetooth/hci.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/net/bluetooth/hci.h b/include/net/bluetooth/hci.h
index 91cd9d302cd0..8e54f825153c 100644
--- a/include/net/bluetooth/hci.h
+++ b/include/net/bluetooth/hci.h
@@ -871,6 +871,10 @@ struct hci_cp_delete_stored_link_key {
bdaddr_t bdaddr;
__u8 delete_all;
} __packed;
+struct hci_rp_delete_stored_link_key {
+ __u8 status;
+ __u8 num_keys;
+} __packed;
#define HCI_MAX_NAME_LENGTH 248