fixeria has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-bts/+/42852?usp=email )
Change subject: struct gsm_bts: drop unused ms_max_power ......................................................................
struct gsm_bts: drop unused ms_max_power
Change-Id: I0b02015db8b8e670eaff40c578f0474d9be9bb45 --- M include/osmo-bts/bts.h M src/common/bts.c 2 files changed, 0 insertions(+), 4 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-bts refs/changes/52/42852/1
diff --git a/include/osmo-bts/bts.h b/include/osmo-bts/bts.h index 8bd3a83..f2287b0 100644 --- a/include/osmo-bts/bts.h +++ b/include/osmo-bts/bts.h @@ -184,9 +184,6 @@ /* Connected PCU version (if any) */ char pcu_version[MAX_VERSION_LENGTH];
- /* maximum Tx power that the MS is permitted to use in this cell */ - int ms_max_power; - /* how do we talk OML with this TRX? */ struct e1inp_sign_link *oml_link; struct timespec oml_conn_established_timestamp; diff --git a/src/common/bts.c b/src/common/bts.c index 2cf4d0a..b699650 100644 --- a/src/common/bts.c +++ b/src/common/bts.c @@ -263,7 +263,6 @@ bts->nr = bts_num; bts->num_trx = 0; INIT_LLIST_HEAD(&bts->trx_list); - bts->ms_max_power = 15; /* dBm */
bts->T_defs = bts_T_defs; osmo_tdefs_reset(bts->T_defs);