From e643b286df92d550f95eb18f684968cb0bb2762a Mon Sep 17 00:00:00 2001 From: Thomas Stranger Date: Sun, 19 Jan 2025 13:49:58 +0100 Subject: [PATCH] drivers: bluetooth: hci: h4_ifx_cyw43xxx: add missing hci includes Add missing bluetooth/hci.h and hci_types.h include to fix the build error and warnings of the infineon h4 ble driver. The driver is using bt_hci_cmd_create() and bt_hci_cmd_send_sync() from bluetooth/hci.h, and BT_HCI_OP_RESET from bluetooth/hci_types.h Signed-off-by: Thomas Stranger --- drivers/bluetooth/hci/h4_ifx_cyw43xxx.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/bluetooth/hci/h4_ifx_cyw43xxx.c b/drivers/bluetooth/hci/h4_ifx_cyw43xxx.c index ae98a8e51e2d..6bc563fb9f20 100644 --- a/drivers/bluetooth/hci/h4_ifx_cyw43xxx.c +++ b/drivers/bluetooth/hci/h4_ifx_cyw43xxx.c @@ -15,6 +15,8 @@ #include #include #include +#include +#include #include #include