Skip to content

Commit

Permalink
drivers: bluetooth: hci: h4_ifx_cyw43xxx: add missing hci includes
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
str4t0m authored and kartben committed Jan 25, 2025
1 parent 7b1031a commit e643b28
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/bluetooth/hci/h4_ifx_cyw43xxx.c
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand Down

0 comments on commit e643b28

Please sign in to comment.