Bluetooth: shell: Fix compile error due to missing memq.h include

Fixes the following compile error when building
tests/bluetooth/shell application:

In file included from subsys/bluetooth/shell/ticker.c:16:0:
subsys/bluetooth/shell/../controller/util/mayfly.h:21:2:
error: unknown type name 'memq_link_t'
  memq_link_t *_link;
  ^~~~~~~~~~~

Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
This commit is contained in:
Vinayak Kariappa Chettimada 2017-11-27 15:09:06 +01:00 committed by Andrew Boie
commit b022f72cf4

View file

@ -13,6 +13,7 @@
#include <shell/shell.h> #include <shell/shell.h>
#include <misc/printk.h> #include <misc/printk.h>
#include "../controller/util/memq.h"
#include "../controller/util/mayfly.h" #include "../controller/util/mayfly.h"
#include "../controller/ticker/ticker.h" #include "../controller/ticker/ticker.h"