bts: Adapt trx check based on bts->trx[] defined array size

This way the code is not hardcoded to 8 TRX.

Related: OS#5827
Change-Id: I5ccb5ec27bc189d17c62e7f2a59fae0b3bddf8e3
This commit is contained in:
Pau Espin 2022-12-16 12:54:12 +01:00
parent 5b7eeecac2
commit 0d957d8364
1 changed files with 1 additions and 1 deletions

View File

@ -632,7 +632,7 @@ int bts_tfi_find_free(const struct gprs_rlcmac_bts *bts, enum gprs_rlcmac_tbf_di
unsigned int best_cnt = 0;
uint8_t best_first_tfi = 0;
if (use_trx >= 0 && use_trx < 8)
if (use_trx >= 0 && use_trx < (int8_t)ARRAY_SIZE(bts->trx))
trx_from = trx_to = use_trx;
else {
trx_from = 0;