aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2020-11-26 10:53:58 +0100
committerfixeria <vyanitskiy@sysmocom.de>2020-12-02 13:56:49 +0000
commitaf4eec056ea3d87bdb659b2b0b4378cec268d702 (patch)
tree29d7e20eda969dae89e5fd13c44ff8866182beca /include
parent5b25e8e7de83d7cfccd9c96e1bc7b0ab7d2c1e22 (diff)
struct gsm_bts: move ul_power_{target,hysteresis} to ul_power_ctrl
Diffstat (limited to 'include')
-rw-r--r--include/osmo-bts/bts.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/osmo-bts/bts.h b/include/osmo-bts/bts.h
index ce7d9d47..66b03e12 100644
--- a/include/osmo-bts/bts.h
+++ b/include/osmo-bts/bts.h
@@ -299,12 +299,12 @@ struct gsm_bts {
bool vty_override; /* OML value overridden by VTY */
} radio_link_timeout;
- /* TODO: move it to bts->ul_power_ctrl struct */
- int ul_power_target; /* Uplink Rx power target */
- int ul_power_hysteresis; /* Tolerable Uplink Rx power deviation */
-
/* Uplink power control */
struct {
+ /* Target value to strive to */
+ int target;
+ /* Tolerated deviation from target */
+ int hysteresis;
/* UL RSSI filtering algorithm */
enum ms_ul_pf_algo pf_algo;
/* (Optional) filtering parameters */