Skip to content

Commit 8fa75e2

Browse files
cvinayakcarlescufi
authored andcommitted
Bluetooth: Controller: Ignore failure to Broadcast ISO remove data path
Ignore failure to Broadcast ISO remove data path when terminating a BIG without a data path being setup. Signed-off-by: Vinayak Kariappa Chettimada <[email protected]>
1 parent a1e8af0 commit 8fa75e2

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

subsys/bluetooth/controller/ll_sw/ull_adv_iso.c

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -710,11 +710,8 @@ uint8_t ll_big_terminate(uint8_t big_handle, uint8_t reason)
710710
while (num_bis--) {
711711
stream_handle = lll_adv_iso->stream_handle[num_bis];
712712
handle = LL_BIS_ADV_HANDLE_FROM_IDX(stream_handle);
713-
err = ll_remove_iso_path(handle,
713+
(void)ll_remove_iso_path(handle,
714714
BIT(BT_HCI_DATAPATH_DIR_HOST_TO_CTLR));
715-
if (err) {
716-
return err;
717-
}
718715
}
719716

720717
lll_adv_sync = lll_adv->sync;

0 commit comments

Comments
 (0)