Skip to content

Commit 06cd4f5

Browse files
cvinayakfabiobaltieri
authored andcommitted
Bluetooth: Controller: Remove redundant Sync ISO must expire
Remove redundant Sync ISO must expire code that is not planned to be implemented. Signed-off-by: Vinayak Kariappa Chettimada <[email protected]>
1 parent a00bec8 commit 06cd4f5

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

subsys/bluetooth/controller/ll_sw/ull_sync_iso.c

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -701,12 +701,7 @@ void ull_sync_iso_setup(struct ll_sync_iso_set *sync_iso,
701701
HAL_TICKER_US_TO_TICKS(sync_iso_offset_us),
702702
HAL_TICKER_US_TO_TICKS(interval_us),
703703
HAL_TICKER_REMAINDER(interval_us),
704-
#if !defined(CONFIG_BT_TICKER_LOW_LAT) && \
705-
!defined(CONFIG_BT_CTLR_LOW_LAT)
706-
TICKER_LAZY_MUST_EXPIRE,
707-
#else
708704
TICKER_NULL_LAZY,
709-
#endif /* !CONFIG_BT_TICKER_LOW_LAT && !CONFIG_BT_CTLR_LOW_LAT */
710705
(sync_iso->ull.ticks_slot + ticks_slot_overhead),
711706
ticker_cb, sync_iso,
712707
ticker_start_op_cb, (void *)__LINE__);
@@ -986,15 +981,6 @@ static void ticker_cb(uint32_t ticks_at_expire, uint32_t ticks_drift,
986981

987982
DEBUG_RADIO_PREPARE_O(1);
988983

989-
if (!IS_ENABLED(CONFIG_BT_TICKER_LOW_LAT) &&
990-
!IS_ENABLED(CONFIG_BT_CTLR_LOW_LAT) &&
991-
(lazy == TICKER_LAZY_MUST_EXPIRE)) {
992-
/* FIXME: generate ISO PDU with status set to invalid */
993-
994-
DEBUG_RADIO_PREPARE_O(0);
995-
return;
996-
}
997-
998984
sync_iso = param;
999985
lll = &sync_iso->lll;
1000986

0 commit comments

Comments
 (0)