@@ -155,7 +155,7 @@ static int prepare_cb(struct lll_prepare_param *p)
155
155
156
156
/* Get reference to ACL context */
157
157
conn_lll = ull_conn_lll_get (cis_lll -> acl_handle );
158
- LL_ASSERT (conn_lll != NULL );
158
+ LL_ASSERT (conn_lll );
159
159
160
160
/* Pick the event_count calculated in the ULL prepare */
161
161
cis_lll -> event_count = cis_lll -> event_count_prepare ;
@@ -434,7 +434,7 @@ static void abort_cb(struct lll_prepare_param *prepare_param, void *param)
434
434
/* Get reference to ACL context */
435
435
const struct lll_conn * conn_lll = ull_conn_lll_get (cis_lll -> acl_handle );
436
436
437
- LL_ASSERT (conn_lll != NULL );
437
+ LL_ASSERT (conn_lll );
438
438
439
439
if (conn_lll -> enc_rx ) {
440
440
radio_ccm_disable ();
@@ -483,7 +483,7 @@ static void isr_tx(void *param)
483
483
/* Get reference to ACL context */
484
484
const struct lll_conn * conn_lll = ull_conn_lll_get (cis_lll -> acl_handle );
485
485
486
- LL_ASSERT (conn_lll != NULL );
486
+ LL_ASSERT (conn_lll );
487
487
#endif /* CONFIG_BT_CTLR_LE_ENC */
488
488
489
489
/* PHY */
@@ -589,7 +589,7 @@ static void isr_tx(void *param)
589
589
590
590
/* Get reference to ACL context */
591
591
evt_conn_lll = ull_conn_lll_get (cis_lll -> acl_handle );
592
- LL_ASSERT (evt_conn_lll != NULL );
592
+ LL_ASSERT (evt_conn_lll );
593
593
594
594
/* Calculate the radio channel to use for next subevent */
595
595
data_chan_id = lll_chan_id (cis_lll -> access_addr );
@@ -636,7 +636,7 @@ static void isr_tx(void *param)
636
636
637
637
/* Get reference to ACL context */
638
638
next_conn_lll = ull_conn_lll_get (next_cis_lll -> acl_handle );
639
- LL_ASSERT (next_conn_lll != NULL );
639
+ LL_ASSERT (next_conn_lll );
640
640
641
641
/* Calculate the radio channel to use for ISO event */
642
642
data_chan_id = lll_chan_id (next_cis_lll -> access_addr );
@@ -777,7 +777,7 @@ static void isr_rx(void *param)
777
777
/* Get reference to ACL context */
778
778
const struct lll_conn * conn_lll = ull_conn_lll_get (cis_lll -> acl_handle );
779
779
780
- LL_ASSERT (conn_lll != NULL );
780
+ LL_ASSERT (conn_lll );
781
781
782
782
/* If required, wait for CCM to finish
783
783
*/
@@ -866,7 +866,7 @@ static void isr_rx(void *param)
866
866
867
867
/* Get reference to ACL context */
868
868
next_conn_lll = ull_conn_lll_get (next_cis_lll -> acl_handle );
869
- LL_ASSERT (next_conn_lll != NULL );
869
+ LL_ASSERT (next_conn_lll );
870
870
871
871
/* Calculate CIS channel if not already calculated */
872
872
if (se_curr < cis_lll -> nse ) {
@@ -1043,7 +1043,7 @@ static void isr_prepare_subevent(void *param)
1043
1043
/* Get reference to ACL context */
1044
1044
const struct lll_conn * conn_lll = ull_conn_lll_get (cis_lll -> acl_handle );
1045
1045
1046
- LL_ASSERT (conn_lll != NULL );
1046
+ LL_ASSERT (conn_lll );
1047
1047
#endif /* CONFIG_BT_CTLR_LE_ENC */
1048
1048
1049
1049
/* PHY */
0 commit comments