Bluetooth: Controller: Fix coverity issue 318804
[Coverity CID: 318804] Copy-paste error in
subsys/bluetooth/controller/ll_sw/nordic/lll/lll_central_iso.c
Fixes #59512.
Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
diff --git a/subsys/bluetooth/controller/ll_sw/nordic/lll/lll_central_iso.c b/subsys/bluetooth/controller/ll_sw/nordic/lll/lll_central_iso.c
index 3e5f688..a7df696 100644
--- a/subsys/bluetooth/controller/ll_sw/nordic/lll/lll_central_iso.c
+++ b/subsys/bluetooth/controller/ll_sw/nordic/lll/lll_central_iso.c
@@ -863,7 +863,7 @@
/* Adjust nesn when flushing Rx */
/* FIXME: When Flush Timeout is implemented */
- if (cis_lll->tx.bn_curr <= cis_lll->rx.bn) {
+ if (cis_lll->rx.bn_curr <= cis_lll->rx.bn) {
lll_flush_rx(cis_lll);
}