diff options
author | Johan Hedberg <johan.hedberg@intel.com> | 2012-01-15 12:51:59 -0500 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@intel.com> | 2012-02-13 10:01:27 -0500 |
commit | e319d2e74378660c5e09a1b8703663ba97f0f62a (patch) | |
tree | ed4b4a2e9e4add922eeac59b7d7e038d5b3e03d0 /include/net/bluetooth/mgmt.h | |
parent | afc747a600ff2e3a4eef8f312fc766608a1360e2 (diff) |
Bluetooth: Add eir_len parameter to mgmt_ev_device_found
This patch add a two byte eir_len parameter mgmt_ev_device_found. Since
it's unlikely that the data will in the short term be much bigger than
conventional EIR lengths just use a small stack based buffer for now to
avoid dynamic memory allocation & freeing.
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.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/net/bluetooth/mgmt.h b/include/net/bluetooth/mgmt.h index d1d13dc0cca8..4f166c834ddb 100644 --- a/include/net/bluetooth/mgmt.h +++ b/include/net/bluetooth/mgmt.h | |||
@@ -368,7 +368,8 @@ struct mgmt_ev_device_found { | |||
368 | __u8 dev_class[3]; | 368 | __u8 dev_class[3]; |
369 | __s8 rssi; | 369 | __s8 rssi; |
370 | __u8 confirm_name; | 370 | __u8 confirm_name; |
371 | __u8 eir[HCI_MAX_EIR_LENGTH]; | 371 | __le16 eir_len; |
372 | __u8 eir[0]; | ||
372 | } __packed; | 373 | } __packed; |
373 | 374 | ||
374 | #define MGMT_EV_REMOTE_NAME 0x0012 | 375 | #define MGMT_EV_REMOTE_NAME 0x0012 |