aboutsummaryrefslogtreecommitdiffstats
path: root/include
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 /include
parentc14f1641c6739a3b1739ae088280c47c7bd5e82d (diff)
common: constify the argument of trx_ms_pwr_ctrl_is_osmo()
Diffstat (limited to 'include')
-rw-r--r--include/osmo-bts/bts_trx.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/osmo-bts/bts_trx.h b/include/osmo-bts/bts_trx.h
index ae87528d..d1e13fd8 100644
--- a/include/osmo-bts/bts_trx.h
+++ b/include/osmo-bts/bts_trx.h
@@ -60,6 +60,6 @@ int trx_link_estab(struct gsm_bts_trx *trx);
int trx_set_available(struct gsm_bts_trx *trx, int avail);
uint8_t num_agch(struct gsm_bts_trx *trx, const char * arg);
-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);
#define LOGPTRX(trx, ss, lvl, fmt, args...) LOGP(ss, lvl, "%s " fmt, gsm_trx_name(trx), ## args)