summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2024-02-06 00:34:47 +0700
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2024-02-06 01:59:39 +0700
commitb512a08a7cfbe6ec829da0c03f61fe3a0e2f0905 (patch)
tree2b27564b77626991ebe3985bded165b450f7a72e
parent45a11442e630f764344d5086e0043949d6a0d916 (diff)
mobile: use tch_send_msg() in tch_csd_tx_to_l1()
Do not access the RR API directly, use TCH API for sending UL data. Change-Id: Icd5b5fad835feecd96a83fa5c83ed08037826fa6 Related: OS#4396
-rw-r--r--src/host/layer23/src/mobile/tch_data.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/host/layer23/src/mobile/tch_data.c b/src/host/layer23/src/mobile/tch_data.c
index 5474bdfe..7f0a330c 100644
--- a/src/host/layer23/src/mobile/tch_data.c
+++ b/src/host/layer23/src/mobile/tch_data.c
@@ -407,7 +407,7 @@ static int tch_csd_tx_to_l1(struct osmocom_ms *ms)
OSMO_ASSERT(0);
}
- return gsm48_rr_tx_traffic(ms, nmsg);
+ return tch_send_msg(ms, nmsg);
}
static int tch_data_check_bcap(const struct gsm_mncc_bearer_cap *bcap)