diff options
author | Luiz Augusto von Dentz | 2021-09-20 15:59:37 -0700 |
---|---|---|
committer | Marcel Holtmann | 2021-09-21 10:37:33 +0200 |
commit | 01ce70b0a274bd76a5a311fb90d4d446d9bdfea1 (patch) | |
tree | b418c8a768fb0d558910a9ec8366450c3a8c0ca8 /net/bluetooth/mgmt.c | |
parent | 81be03e026dc0c16dc1c64e088b2a53b73caa895 (diff) |
Bluetooth: eir: Move EIR/Adv Data functions to its own file
This moves functions manipulating EIR/Adv Data to its own file so it
can be reused by other files.
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/bluetooth/mgmt.c')
-rw-r--r-- | net/bluetooth/mgmt.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c index df5e16d7e313..4d450c6f2140 100644 --- a/net/bluetooth/mgmt.c +++ b/net/bluetooth/mgmt.c @@ -38,6 +38,7 @@ #include "mgmt_util.h" #include "mgmt_config.h" #include "msft.h" +#include "eir.h" #define MGMT_VERSION 1 #define MGMT_REVISION 21 @@ -7772,7 +7773,7 @@ static u8 calculate_name_len(struct hci_dev *hdev) { u8 buf[HCI_MAX_SHORT_NAME_LENGTH + 3]; - return append_local_name(hdev, buf, 0); + return eir_append_local_name(hdev, buf, 0); } static u8 tlv_data_max_len(struct hci_dev *hdev, u32 adv_flags, |