Rename function tbf_dl_request_dl_ack() -> dl_tbf_request_dl_ack()

Use the dl_tbf prefix which is usually used to easily distinguish from
"ul_tbf" specific APIs and "tbf" generic (parent class) APIs.

Change-Id: Ibf6ae20da99866af5f2b6e12184f3145d1fc0bbf
This commit is contained in:
Pau Espin 2022-10-28 17:38:52 +02:00
parent ee35008037
commit 8fa3e063f5
3 changed files with 3 additions and 3 deletions

View File

@ -99,7 +99,7 @@ static void ms_llc_timer_cb(void *_ms)
LOGPTBFDL(dl_tbf, LOGL_DEBUG, "LLC receive timeout, requesting DL ACK\n");
tbf_dl_request_dl_ack(dl_tbf);
dl_tbf_request_dl_ack(dl_tbf);
}
static int ms_talloc_destructor(struct GprsMs *ms);

View File

@ -1027,7 +1027,7 @@ void gprs_rlcmac_dl_tbf::request_dl_ack()
m_dl_ack_requested = true;
}
void tbf_dl_request_dl_ack(struct gprs_rlcmac_dl_tbf *dl_tbf) {
void dl_tbf_request_dl_ack(struct gprs_rlcmac_dl_tbf *dl_tbf) {
dl_tbf->request_dl_ack();
}

View File

@ -139,7 +139,7 @@ int dl_tbf_handle(struct gprs_rlcmac_bts *bts,
void dl_tbf_trigger_ass_on_pacch(struct gprs_rlcmac_dl_tbf *tbf, struct gprs_rlcmac_tbf *old_tbf);
void dl_tbf_trigger_ass_on_pch(struct gprs_rlcmac_dl_tbf *tbf);
void tbf_dl_request_dl_ack(struct gprs_rlcmac_dl_tbf *tbf);
void dl_tbf_request_dl_ack(struct gprs_rlcmac_dl_tbf *tbf);
static inline struct gprs_rlcmac_tbf *dl_tbf_as_tbf(struct gprs_rlcmac_dl_tbf *dl_tbf)
{