aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2021-05-21 19:59:00 +0200
committerlaforge <laforge@osmocom.org>2021-05-23 10:09:27 +0000
commitd7323d6f1f78ec1bd4c2838257395d47e54e932a (patch)
treeebe4983b2331549b71e76701f22d6027caa0d8d7 /include
parente24279508d41a52eb2cc8620467f7bd8b777c63e (diff)
[VAMOS] common: make 'struct gsm_bts_trx_ts' pointers const
Diffstat (limited to 'include')
-rw-r--r--include/osmo-bts/gsm_data.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/osmo-bts/gsm_data.h b/include/osmo-bts/gsm_data.h
index be180075..50ee88ea 100644
--- a/include/osmo-bts/gsm_data.h
+++ b/include/osmo-bts/gsm_data.h
@@ -526,9 +526,9 @@ uint8_t gsm_ts_tsc(const struct gsm_bts_trx_ts *ts);
struct gsm_lchan *rsl_lchan_lookup(struct gsm_bts_trx *trx, uint8_t chan_nr,
int *rc);
-enum gsm_phys_chan_config ts_pchan(struct gsm_bts_trx_ts *ts);
-uint8_t ts_subslots(struct gsm_bts_trx_ts *ts);
-bool ts_is_tch(struct gsm_bts_trx_ts *ts);
+enum gsm_phys_chan_config ts_pchan(const struct gsm_bts_trx_ts *ts);
+uint8_t ts_subslots(const struct gsm_bts_trx_ts *ts);
+bool ts_is_tch(const struct gsm_bts_trx_ts *ts);
int lchan2ecu_codec(const struct gsm_lchan *lchan);