trxcon: cosmetic: use ARRAY_SIZE() whenever appropriate

Change-Id: I2a246bad8d11ed45fbf849de961713ab96907d83
This commit is contained in:
Vadim Yanitskiy 2022-07-16 04:49:10 +07:00
parent c4aa60317d
commit 682341738d
2 changed files with 4 additions and 4 deletions

View File

@ -765,7 +765,7 @@ static int l1ctl_rx_tch_mode_req(struct l1ctl_link *l1l, struct msgb *msg)
"(tch_mode=%u, audio_mode=%u)\n", req->tch_mode, req->audio_mode);
/* Iterate over timeslot list */
for (i = 0; i < TRX_TS_COUNT; i++) {
for (i = 0; i < ARRAY_SIZE(l1l->sched->ts); i++) {
/* Timeslot is not allocated */
ts = l1l->sched->ts[i];
if (ts == NULL)

View File

@ -69,7 +69,7 @@ static void sched_frame_clck_cb(struct l1sched_state *sched)
sched->fn_counter_advance);
/* Iterate over timeslot list */
for (i = 0; i < TRX_TS_COUNT; i++) {
for (i = 0; i < ARRAY_SIZE(br); i++) {
/* Initialize the buffer for this timeslot */
br[i] = (struct l1sched_burst_req) {
.fn = fn,
@ -179,7 +179,7 @@ void l1sched_free(struct l1sched_state *sched)
LOGP(DSCH, LOGL_NOTICE, "Shutdown scheduler\n");
/* Free all potentially allocated timeslots */
for (i = 0; i < TRX_TS_COUNT; i++)
for (i = 0; i < ARRAY_SIZE(sched->ts); i++)
l1sched_del_ts(sched, i);
l1sched_clck_reset(sched);
@ -197,7 +197,7 @@ void l1sched_reset(struct l1sched_state *sched, bool reset_clock)
reset_clock ? "and clock counter" : "");
/* Free all potentially allocated timeslots */
for (i = 0; i < TRX_TS_COUNT; i++)
for (i = 0; i < ARRAY_SIZE(sched->ts); i++)
l1sched_del_ts(sched, i);
/* Stop and reset clock counter if required */