sba: Drop unused function find_sba_rts

This function is not longer used since commit below, let's drop it.

Change-Id: I633676fc3a573acd0dccdd035ffe557c9c71a56e
Fixes: fd1fbdb8db
This commit is contained in:
Pau Espin 2021-04-22 19:46:28 +02:00
parent ab3aca65c5
commit ffc533b1af
2 changed files with 0 additions and 14 deletions

View File

@ -95,15 +95,3 @@ void sba_timeout(struct gprs_rlcmac_sba *sba)
/* Upon timeout, the UL Controller node is already released */
sba_free_norelease(sba);
}
uint32_t find_sba_rts(struct gprs_rlcmac_pdch *pdch, uint32_t fn, uint8_t block_nr)
{
uint32_t sba_fn = rts_next_fn(fn, block_nr);
struct gprs_rlcmac_sba *sba;
sba = pdch_ulc_get_sba(pdch->ulc, sba_fn);
if (sba)
return sba_fn;
return 0xffffffff;
}

View File

@ -43,8 +43,6 @@ struct gprs_rlcmac_sba *sba_alloc(void *ctx, struct gprs_rlcmac_pdch *pdch, uint
void sba_free(struct gprs_rlcmac_sba *sba);
void sba_timeout(struct gprs_rlcmac_sba *sba);
uint32_t find_sba_rts(struct gprs_rlcmac_pdch *pdch, uint32_t fn, uint8_t block_nr);
#ifdef __cplusplus
}
#endif