From c69be560a99ce6a268cf27722c6422f5b93b337d Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Mon, 17 Jun 2024 14:13:28 +0200 Subject: [PATCH] hci: fix build with controller to host flow control Regression from a086dc3 --- src/hci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hci.c b/src/hci.c index 156598bee..c20f28938 100644 --- a/src/hci.c +++ b/src/hci.c @@ -7635,7 +7635,7 @@ static void hci_run(void){ #ifdef ENABLE_HCI_CONTROLLER_TO_HOST_FLOW_CONTROL // send host num completed packets next as they don't require num_cmd_packets > 0 - if (!hci_can_send_comand_packet_transport()) return; + if (!hci_can_send_command_packet_transport()) return; if (hci_stack->host_completed_packets){ hci_host_num_completed_packets(); return;