diff options
author | Claire Chang <tientzu@chromium.org> | 2020-09-29 10:03:24 +0200 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2020-11-09 13:52:55 +0100 |
commit | 82493316507a720b6faa2ec23971c0ca89c6dcb0 (patch) | |
tree | 87edce09a832b63ac55bad2b490712ad8bd049ef /net/bluetooth/smp.h | |
parent | Bluetooth: Fix: LL PRivacy BLE device fails to connect (diff) | |
download | linux-82493316507a720b6faa2ec23971c0ca89c6dcb0.tar.xz linux-82493316507a720b6faa2ec23971c0ca89c6dcb0.zip |
Bluetooth: Move force_bredr_smp debugfs into hci_debugfs_create_bredr
Avoid multiple attempts to create the debugfs entry, force_bredr_smp,
by moving it from the SMP registration to the BR/EDR controller init
section. hci_debugfs_create_bredr is only called when HCI_SETUP and
HCI_CONFIG is not set.
Signed-off-by: Claire Chang <tientzu@chromium.org>
Reviewed-by: Alain Michaud <alainm@chromium.org>
Reviewed-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/bluetooth/smp.h')
-rw-r--r-- | net/bluetooth/smp.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/bluetooth/smp.h b/net/bluetooth/smp.h index 121edadd5f8d..fc35a8bf358e 100644 --- a/net/bluetooth/smp.h +++ b/net/bluetooth/smp.h @@ -193,6 +193,8 @@ bool smp_irk_matches(struct hci_dev *hdev, const u8 irk[16], int smp_generate_rpa(struct hci_dev *hdev, const u8 irk[16], bdaddr_t *rpa); int smp_generate_oob(struct hci_dev *hdev, u8 hash[16], u8 rand[16]); +int smp_force_bredr(struct hci_dev *hdev, bool enable); + int smp_register(struct hci_dev *hdev); void smp_unregister(struct hci_dev *hdev); |