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:
Rubin Gerritsen 2020-02-27 10:00:16 +01:00 committed by Johan Hedberg
commit 3a30eed083

View file

@ -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;
} }