aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2021-03-14 14:56:08 +0100
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2021-03-26 12:58:13 -0700
commit21dd118f8de318df2bebfcd44a722168bb705be7 (patch)
treee9d75b52acee3eaf10b1109aad2a18d1078a0c28
parent353cac0e108f0484b101fd8cc6c2c0c5d9100ca6 (diff)
downloadbluetooth-next-21dd118f8de318df2bebfcd44a722168bb705be7.tar.gz
Bluetooth: Fix wrong opcode error for read advertising featuresHEADmaster
The read advertising features error handling returns false the opcode for the set advertising command. Signed-off-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
-rw-r--r--net/bluetooth/mgmt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c
index 3df6f9cf23f36d..51c7e643669aa7 100644
--- a/net/bluetooth/mgmt.c
+++ b/net/bluetooth/mgmt.c
@@ -7476,7 +7476,7 @@ static int read_adv_features(struct sock *sk, struct hci_dev *hdev,
* advertising.
*/
if (hci_dev_test_flag(hdev, HCI_ENABLE_LL_PRIVACY))
- return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
+ return mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_ADV_FEATURES,
MGMT_STATUS_NOT_SUPPORTED);
hci_dev_lock(hdev);