Bluetooth: controller: Remove vendor specific internal LLL include

Remove inclusion of vendor specific internal LLL include
files in ULL source code.

Prefix `lll/` include file path to correctly include vendor
defined types and function implementation.

Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
This commit is contained in:
Vinayak Kariappa Chettimada 2021-02-24 16:42:02 +05:30 committed by Carles Cufí
commit f9511079b2
35 changed files with 387 additions and 368 deletions

View file

@ -29,7 +29,6 @@
#include "lll.h"
#include "lll_clock.h"
#include "lll_conn.h"
#include "lll_tim_internal.h"
#include "ull_conn_types.h"
#include "ull_internal.h"
@ -39,6 +38,10 @@
#include "ull_slave_internal.h"
#include "ull_master_internal.h"
#if defined(CONFIG_BT_CTLR_USER_EXT)
#include "ull_vendor.h"
#endif /* CONFIG_BT_CTLR_USER_EXT */
#include "ll.h"
#include "ll_feat.h"
#include "ll_settings.h"
@ -48,10 +51,6 @@
#include "common/log.h"
#include "hal/debug.h"
#if defined(CONFIG_BT_CTLR_USER_EXT)
#include "ull_vendor.h"
#endif /* CONFIG_BT_CTLR_USER_EXT */
/**
* User CPR Interval
*/