Bluetooth: Fix missing includes for hci.h

With the changes in PR #19836 applications now need to explicitly
include hci.h to use defines from it. Fix two sample/tests apps which
were missing this.

Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
This commit is contained in:
Johan Hedberg 2019-10-17 18:11:17 +03:00 committed by Johan Hedberg
commit 5537181e1a
2 changed files with 2 additions and 0 deletions

View file

@ -16,6 +16,7 @@
#include <bluetooth/uuid.h>
#include <bluetooth/conn.h>
#include <bluetooth/gatt.h>
#include <bluetooth/hci.h>
#include "pong.h"

View file

@ -13,6 +13,7 @@
#include <toolchain.h>
#include <bluetooth/bluetooth.h>
#include <bluetooth/conn.h>
#include <bluetooth/hci.h>
#include <sys/byteorder.h>
#include <net/buf.h>