diff mbox series

[v2,2/2] Bluetooth: HCI: Fix definition of hci_rp_delete_stored_link_key

Message ID 20211125001613.3274241-2-luiz.dentz@gmail.com
State New
Headers show
Series [v2,1/2] Bluetooth: HCI: Fix definition of hci_rp_read_stored_link_key | expand

Commit Message

Luiz Augusto von Dentz Nov. 25, 2021, 12:16 a.m. UTC
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

num_keys is actually 2 octects not 1:

BLUETOOTH CORE SPECIFICATION Version 5.3 | Vol 4, Part E
page 1989:

  Num_Keys_Deleted:
  Size: 2 octets
  0xXXXX	Number of Link Keys Deleted

Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
---
 include/net/bluetooth/hci.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/include/net/bluetooth/hci.h b/include/net/bluetooth/hci.h
index 3c5211c3a790..b557d86396d5 100644
--- a/include/net/bluetooth/hci.h
+++ b/include/net/bluetooth/hci.h
@@ -1058,7 +1058,7 @@  struct hci_cp_delete_stored_link_key {
 } __packed;
 struct hci_rp_delete_stored_link_key {
 	__u8     status;
-	__u8     num_keys;
+	__le16   num_keys;
 } __packed;
 
 #define HCI_MAX_NAME_LENGTH		248