Skip to content

Commit e643b28

Browse files
str4t0mkartben
authored andcommitted
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>
1 parent 7b1031a commit e643b28

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

drivers/bluetooth/hci/h4_ifx_cyw43xxx.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
#include <zephyr/kernel.h>
1616
#include <zephyr/device.h>
1717
#include <zephyr/bluetooth/bluetooth.h>
18+
#include <zephyr/bluetooth/hci.h>
19+
#include <zephyr/bluetooth/hci_types.h>
1820
#include <zephyr/drivers/gpio.h>
1921
#include <zephyr/drivers/uart.h>
2022

0 commit comments

Comments
 (0)