aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/bluetooth/mgmt.h
diff options
context:
space:
mode:
authorJohan Hedberg <johan.hedberg@intel.com>2012-02-17 07:27:06 -0500
committerJohan Hedberg <johan.hedberg@intel.com>2012-02-17 07:39:16 -0500
commita198e7b100b26dd6ac0240487ca37bad0f53e3e6 (patch)
tree9389498822eda64c2f1a6bc71093572fadb658cb /include/net/bluetooth/mgmt.h
parentd8457698e7f23a05055396a15ec72ba663282867 (diff)
Bluetooth: mgmt: Add address type to confirm name command
The latest mgmt API includes an address type for all messages containing an address. This patch updates the confirm name command to match this. Signed-off-by: Johan Hedberg <johan.hedberg@intel.com> Acked-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'include/net/bluetooth/mgmt.h')
-rw-r--r--include/net/bluetooth/mgmt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/bluetooth/mgmt.h b/include/net/bluetooth/mgmt.h
index eb584cc287d6..14c1816cac67 100644
--- a/include/net/bluetooth/mgmt.h
+++ b/include/net/bluetooth/mgmt.h
@@ -296,11 +296,11 @@ struct mgmt_cp_start_discovery {
296 296
297#define MGMT_OP_CONFIRM_NAME 0x0025 297#define MGMT_OP_CONFIRM_NAME 0x0025
298struct mgmt_cp_confirm_name { 298struct mgmt_cp_confirm_name {
299 bdaddr_t bdaddr; 299 struct mgmt_addr_info addr;
300 __u8 name_known; 300 __u8 name_known;
301} __packed; 301} __packed;
302struct mgmt_rp_confirm_name { 302struct mgmt_rp_confirm_name {
303 bdaddr_t bdaddr; 303 struct mgmt_addr_info addr;
304 __u8 status; 304 __u8 status;
305} __packed; 305} __packed;
306 306