Skip to content

Commit dab1828

Browse files
cvinayakioannisg
authored andcommitted
Bluetooth: controller: split: Revert broken ZLI support
This reverts commit 3096c0e. Signed-off-by: Vinayak Kariappa Chettimada <[email protected]>
1 parent c53ca07 commit dab1828

File tree

1 file changed

+2
-13
lines changed
  • subsys/bluetooth/controller/ll_sw/nordic/lll

1 file changed

+2
-13
lines changed

subsys/bluetooth/controller/ll_sw/nordic/lll/lll.c

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,6 @@
3333
#include "common/log.h"
3434
#include "hal/debug.h"
3535

36-
#if defined(CONFIG_BT_CTLR_ZLI)
37-
#define IRQ_CONNECT_FLAGS IRQ_ZERO_LATENCY
38-
#else
39-
#define IRQ_CONNECT_FLAGS 0
40-
#endif
41-
4236
static struct {
4337
struct {
4438
void *param;
@@ -164,16 +158,11 @@ int lll_init(void)
164158

165159
/* Connect ISRs */
166160
IRQ_DIRECT_CONNECT(RADIO_IRQn, CONFIG_BT_CTLR_LLL_PRIO,
167-
radio_nrf5_isr, IRQ_CONNECT_FLAGS);
168-
#if (CONFIG_BT_CTLR_LLL_PRIO == CONFIG_BT_CTLR_ULL_HIGH_PRIO)
169-
IRQ_CONNECT(RTC0_IRQn, CONFIG_BT_CTLR_ULL_HIGH_PRIO,
170-
rtc0_nrf5_isr, NULL, IRQ_CONNECT_FLAGS);
171-
#else
161+
radio_nrf5_isr, 0);
172162
IRQ_CONNECT(RTC0_IRQn, CONFIG_BT_CTLR_ULL_HIGH_PRIO,
173163
rtc0_nrf5_isr, NULL, 0);
174-
#endif
175164
IRQ_CONNECT(HAL_SWI_RADIO_IRQ, CONFIG_BT_CTLR_LLL_PRIO,
176-
swi_lll_nrf5_isr, NULL, IRQ_CONNECT_FLAGS);
165+
swi_lll_nrf5_isr, NULL, 0);
177166
#if defined(CONFIG_BT_CTLR_LOW_LAT) || \
178167
(CONFIG_BT_CTLR_ULL_HIGH_PRIO != CONFIG_BT_CTLR_ULL_LOW_PRIO)
179168
IRQ_CONNECT(HAL_SWI_JOB_IRQ, CONFIG_BT_CTLR_ULL_LOW_PRIO,

0 commit comments

Comments
 (0)