aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2023-11-09 19:28:46 +0700
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2023-11-09 19:28:48 +0700
commit863d4d933e66fd68efd9e3ed6b5c35f1f83720d4 (patch)
tree3778ce90d7014254e631fa5413e27b799d937371
parent791d121bd95ea45a2c3d77b47c19c4a6c9ccb145 (diff)
osmo-bts-trx: tx_tch[fh]_fn(): use BUFPOS macro everywhere
For the sake of consistency. Change-Id: I16ce4c979c5b44fd67324eb2ed3da28a4b78221b Related: OS#1572
-rw-r--r--src/osmo-bts-trx/sched_lchan_tchf.c4
-rw-r--r--src/osmo-bts-trx/sched_lchan_tchh.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/osmo-bts-trx/sched_lchan_tchf.c b/src/osmo-bts-trx/sched_lchan_tchf.c
index ae800a92..34af8a1f 100644
--- a/src/osmo-bts-trx/sched_lchan_tchf.c
+++ b/src/osmo-bts-trx/sched_lchan_tchf.c
@@ -539,12 +539,12 @@ int tx_tchf_fn(struct l1sched_ts *l1ts, struct trx_dl_burst_req *br)
switch (tch_mode) {
case GSM48_CMODE_SPEECH_V1:
case GSM48_CMODE_SPEECH_EFR:
- rc = gsm0503_tch_fr_encode(bursts_p, NULL, 0, 1);
+ rc = gsm0503_tch_fr_encode(BUFPOS(bursts_p, 0), NULL, 0, 1);
if (rc == 0)
break;
/* fall-through */
default:
- gsm0503_tch_fr_encode(bursts_p, dummy, sizeof(dummy), 1);
+ gsm0503_tch_fr_encode(BUFPOS(bursts_p, 0), dummy, sizeof(dummy), 1);
chan_state->dl_facch_bursts = 8;
}
goto send_burst;
diff --git a/src/osmo-bts-trx/sched_lchan_tchh.c b/src/osmo-bts-trx/sched_lchan_tchh.c
index 23e59cf8..77309cf3 100644
--- a/src/osmo-bts-trx/sched_lchan_tchh.c
+++ b/src/osmo-bts-trx/sched_lchan_tchh.c
@@ -463,7 +463,7 @@ int tx_tchh_fn(struct l1sched_ts *l1ts, struct trx_dl_burst_req *br)
* gaps in TCH/AHS. See OS#6049.
*/
if (tch_mode == GSM48_CMODE_SPEECH_V1) {
- rc = gsm0503_tch_hr_encode(bursts_p, NULL, 0);
+ rc = gsm0503_tch_hr_encode(BUFPOS(bursts_p, 0), NULL, 0);
if (rc == 0)
goto send_burst;
}