Bluetooth: Always use full path to hci_driver.h

The path to include/drivers should not be in the compiler include path
list, only include/. In order to make this possible, always explictly
refer to hci_driver.h via the drivers/bluetooth/ path and not only
bluetooth/.

Fixes #21974.

Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
This commit is contained in:
Carles Cufi 2020-01-16 17:21:12 +01:00 committed by Anas Nashif
commit 6cf7ac77bf
15 changed files with 15 additions and 15 deletions

View file

@ -10,7 +10,7 @@
#include <init.h>
#include <sys/util.h>
#include <bluetooth/hci.h>
#include <bluetooth/hci_driver.h>
#include <drivers/bluetooth/hci_driver.h>
#include "bluetooth/addr.h"
#include "app_conf.h"