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 <thomas.stranger@outlook.com>
This commit is contained in:
Thomas Stranger 2025-01-19 13:49:58 +01:00 committed by Benjamin Cabé
parent 7b1031a233
commit e643b286df

View File

@ -15,6 +15,8 @@
#include <zephyr/kernel.h>
#include <zephyr/device.h>
#include <zephyr/bluetooth/bluetooth.h>
#include <zephyr/bluetooth/hci.h>
#include <zephyr/bluetooth/hci_types.h>
#include <zephyr/drivers/gpio.h>
#include <zephyr/drivers/uart.h>