aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2020-08-06 04:54:14 +0700
committerfixeria <vyanitskiy@sysmocom.de>2020-08-07 18:31:10 +0000
commit30458c83e561bbb319a4e1fba5a4ce00e611b691 (patch)
treedd2def6b5546b1ad858b4cb131551445865f3eca /include
parent4fa40f591357ac226259c2ccfa1a96f2daed4461 (diff)
rsl: constify the 'lchan' argument of rsl_tx_conn_fail()
Diffstat (limited to 'include')
-rw-r--r--include/osmo-bts/rsl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/osmo-bts/rsl.h b/include/osmo-bts/rsl.h
index ff6c2a86..5dfd6cfa 100644
--- a/include/osmo-bts/rsl.h
+++ b/include/osmo-bts/rsl.h
@@ -24,7 +24,7 @@ int rsl_tx_chan_rqd(struct gsm_bts_trx *trx, struct gsm_time *gtime,
int rsl_tx_est_ind(struct gsm_lchan *lchan, uint8_t link_id, uint8_t *data, int len);
int rsl_tx_chan_act_acknack(struct gsm_lchan *lchan, uint8_t cause);
-int rsl_tx_conn_fail(struct gsm_lchan *lchan, uint8_t cause);
+int rsl_tx_conn_fail(const struct gsm_lchan *lchan, uint8_t cause);
int rsl_tx_rf_rel_ack(struct gsm_lchan *lchan);
int rsl_tx_hando_det(struct gsm_lchan *lchan, uint8_t *ho_delay);