aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2015-09-06 14:12:17 +0200
committerHarald Welte <laforge@gnumonks.org>2015-09-22 16:41:32 +0200
commit88a31e2a990dfbacfc9d6b7cbfd03edc99e68687 (patch)
tree290f83162ad18b404608e40f2e130f3777cbdae2
parent307bfc81c1d4eb782339946c0dbccab6095aa10f (diff)
make osmo-bts-trx provide bts_model_adjst_ms_pwr()
-rw-r--r--src/osmo-bts-trx/l1_if.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/osmo-bts-trx/l1_if.c b/src/osmo-bts-trx/l1_if.c
index d0cf56d2..42cb17b8 100644
--- a/src/osmo-bts-trx/l1_if.c
+++ b/src/osmo-bts-trx/l1_if.c
@@ -296,6 +296,13 @@ void bts_model_abis_close(struct gsm_bts *bts)
bts_model_trx_close(trx);
}
+int bts_model_adjst_ms_pwr(struct gsm_lchan *lchan)
+{
+ /* we always implement the power control loop in osmo-bts software, as
+ * there is no automatism in the underlying osmo-trx */
+ return 0;
+}
+
/* set bts attributes */
static uint8_t trx_set_bts(struct gsm_bts *bts, struct tlv_parsed *new_attr)
{