aboutsummaryrefslogtreecommitdiffstats
path: root/src/gprs_rlcmac_sched.cpp
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-10-26 21:48:38 +0200
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-10-30 21:24:12 +0100
commit61a0a04d2651211715dc5e379021da334606c229 (patch)
treee53f487bc8f59b4393f7eb2e58fd60aeac2f6767 /src/gprs_rlcmac_sched.cpp
parent3dc56a3b341ffd22a7a5951a5ec6f78163fdc800 (diff)
tbf: Move gprs_rlcmac_send_data_block_acknowledged into tbf
We can now remove the gprs_rlcmac_data as the code has been moved into the tbf, pdch and bts.
Diffstat (limited to 'src/gprs_rlcmac_sched.cpp')
-rw-r--r--src/gprs_rlcmac_sched.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gprs_rlcmac_sched.cpp b/src/gprs_rlcmac_sched.cpp
index 11a9630d..b411e2ff 100644
--- a/src/gprs_rlcmac_sched.cpp
+++ b/src/gprs_rlcmac_sched.cpp
@@ -182,7 +182,7 @@ static struct msgb *sched_select_downlink(struct gprs_rlcmac_bts *bts,
/* next TBF to handle ressource is the next one */
pdch->next_dl_tfi = (tfi + 1) & 31;
/* generate DL data block */
- msg = gprs_rlcmac_send_data_block_acknowledged(tbf, fn, ts);
+ msg = tbf->create_dl_acked_block(fn, ts);
break;
}