From 8877348aecabf20ef7ae92de109b4edb97f9b32d Mon Sep 17 00:00:00 2001 From: Vinayak Kariappa Chettimada Date: Wed, 14 Jun 2017 21:29:15 +0200 Subject: [PATCH] Bluetooth: shell: Fix compile error with LL cmds included Fixed compile error due to the missing header file dependency on bluetooth/hci.h, for bt_addr_le_t, in the Link Layer header file. Merge of PR #475 introduced the new dependency that broke compilation after merge of #474. Signed-off-by: Vinayak Kariappa Chettimada --- subsys/bluetooth/shell/ll.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/subsys/bluetooth/shell/ll.c b/subsys/bluetooth/shell/ll.c index bf3cf21d11e..40fb1060cfc 100644 --- a/subsys/bluetooth/shell/ll.c +++ b/subsys/bluetooth/shell/ll.c @@ -14,6 +14,8 @@ #include #include +#include + #include "../controller/include/ll.h" #if defined(CONFIG_BLUETOOTH_CONTROLLER_ADV_EXT)