diff options
author | Tedd Ho-Jeong An <tedd.an@intel.com> | 2021-07-26 13:22:36 -0700 |
---|---|---|
committer | Luiz Augusto von Dentz <luiz.von.dentz@intel.com> | 2021-07-28 15:42:24 -0700 |
commit | a25fca4d3c18766b6f7a3c95fa8faec23ef464c5 (patch) | |
tree | 46bcdf7a82390580b31fc6a34ebb4b75ee35c47b /net/bluetooth | |
parent | 58ce6d5b271ab25fb2056f84a8e5546945eb5fc9 (diff) | |
download | linux-a25fca4d3c18766b6f7a3c95fa8faec23ef464c5.tar.gz linux-a25fca4d3c18766b6f7a3c95fa8faec23ef464c5.tar.bz2 linux-a25fca4d3c18766b6f7a3c95fa8faec23ef464c5.zip |
Bluetooth: mgmt: Fix wrong opcode in the response for add_adv cmd
This patch fixes the MGMT add_advertising command repsones with the
wrong opcode when it is trying to return the not supported error.
Fixes: cbbdfa6f33198 ("Bluetooth: Enable controller RPA resolution using Experimental feature")
Signed-off-by: Tedd Ho-Jeong An <tedd.an@intel.com>
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Diffstat (limited to 'net/bluetooth')
-rw-r--r-- | net/bluetooth/mgmt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c index 3663f880df11..1e21e014efd2 100644 --- a/net/bluetooth/mgmt.c +++ b/net/bluetooth/mgmt.c @@ -7725,7 +7725,7 @@ static int add_advertising(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_ADD_ADVERTISING, MGMT_STATUS_NOT_SUPPORTED); if (cp->instance < 1 || cp->instance > hdev->le_num_of_adv_sets) |