bluetooth: Fix wrong warning text for unsupported Zephyr HCI commands
They were interchanged. Signed-off-by: Rubin Gerritsen <rubin.gerritsen@nordicsemi.no>
This commit is contained in:
parent
1a43a798e7
commit
3a30eed083
1 changed files with 2 additions and 2 deletions
|
@ -5028,7 +5028,7 @@ static void hci_vs_init(void)
|
||||||
err = bt_hci_cmd_send_sync(BT_HCI_OP_VS_READ_SUPPORTED_COMMANDS,
|
err = bt_hci_cmd_send_sync(BT_HCI_OP_VS_READ_SUPPORTED_COMMANDS,
|
||||||
NULL, &rsp);
|
NULL, &rsp);
|
||||||
if (err) {
|
if (err) {
|
||||||
BT_WARN("Failed to read supported vendor features");
|
BT_WARN("Failed to read supported vendor commands");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5046,7 +5046,7 @@ static void hci_vs_init(void)
|
||||||
err = bt_hci_cmd_send_sync(BT_HCI_OP_VS_READ_SUPPORTED_FEATURES,
|
err = bt_hci_cmd_send_sync(BT_HCI_OP_VS_READ_SUPPORTED_FEATURES,
|
||||||
NULL, &rsp);
|
NULL, &rsp);
|
||||||
if (err) {
|
if (err) {
|
||||||
BT_WARN("Failed to read supported vendor commands");
|
BT_WARN("Failed to read supported vendor features");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue