aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2020-08-03 01:53:40 +0700
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2020-08-03 02:08:14 +0700
commit60e2919ff400408d33c2325a3843ae4e820729b9 (patch)
tree4d850b845480e22db33ddf52a176a03a39cbc894 /src
parentc14f1641c6739a3b1739ae088280c47c7bd5e82d (diff)
common: constify the argument of trx_ms_pwr_ctrl_is_osmo()
Diffstat (limited to 'src')
-rw-r--r--src/common/bts_trx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/bts_trx.c b/src/common/bts_trx.c
index 6318dbc7..3f45926b 100644
--- a/src/common/bts_trx.c
+++ b/src/common/bts_trx.c
@@ -196,7 +196,7 @@ int trx_set_available(struct gsm_bts_trx *trx, int avail)
}
-bool trx_ms_pwr_ctrl_is_osmo(struct gsm_bts_trx *trx)
+bool trx_ms_pwr_ctrl_is_osmo(const struct gsm_bts_trx *trx)
{
return trx->ms_pwr_ctl_soft;
}