diff options
author | Johan Hedberg <johan.hedberg@intel.com> | 2011-12-19 07:29:06 -0500 |
---|---|---|
committer | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-12-19 08:23:47 -0500 |
commit | d85bb264330a375497db9c5fd452038dba4c0ea5 (patch) | |
tree | 11c3b77393f893d9fc817bde81073b6881619afb /include/net | |
parent | 65983fc7bb8df655706cb6e8353b6561b633ee4d (diff) |
Bluetooth: Add missing confirm_name field to mgmt_ev_device_found
This patch adds a missing confirm_name field to mgmt_ev_device_found.
Support for setting the correct value for this field is not implemented
yet, but having it part of the struct definition ensures that user-space
gets correct sized device_found events and is thereby able to do at
least rudimentary parsing of them.
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/bluetooth/mgmt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/bluetooth/mgmt.h b/include/net/bluetooth/mgmt.h index 2b1059d64541..9f7a956a2ec3 100644 --- a/include/net/bluetooth/mgmt.h +++ b/include/net/bluetooth/mgmt.h | |||
@@ -357,6 +357,7 @@ struct mgmt_ev_device_found { | |||
357 | struct mgmt_addr_info addr; | 357 | struct mgmt_addr_info addr; |
358 | __u8 dev_class[3]; | 358 | __u8 dev_class[3]; |
359 | __s8 rssi; | 359 | __s8 rssi; |
360 | __u8 confirm_name; | ||
360 | __u8 eir[HCI_MAX_EIR_LENGTH]; | 361 | __u8 eir[HCI_MAX_EIR_LENGTH]; |
361 | } __packed; | 362 | } __packed; |
362 | 363 | ||