find_multi_slots: Avoid calling mslot_class_get_tx() on each iteration

Change-Id: I397495c158bce1c2715991371368b0d84cf69261
This commit is contained in:
Pau Espin 2021-02-19 16:56:36 +01:00
parent 1f8e229221
commit 47a3b780db
1 changed files with 1 additions and 1 deletions

View File

@ -556,7 +556,7 @@ int find_multi_slots(struct gprs_rlcmac_trx *trx, uint8_t mslot_class, uint8_t *
/* Check for each UL (TX) slot */
/* Iterate through possible numbers of TX slots */
for (num_tx = 1; num_tx <= mslot_class_get_tx(mslot_class); num_tx += 1) {
for (num_tx = 1; num_tx <= Tx; num_tx += 1) {
uint16_t tx_valid_win = (1 << num_tx) - 1;
uint8_t rx_mask[MASK_TR + 1];