aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2020-12-01 18:53:42 +0100
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2020-12-06 18:58:11 +0100
commit63c1838c7ae4f51a6f50856c1aae072811d0a850 (patch)
tree22e8c6ebdacd72cab323b27e2a456d90c6342aee
parentpower_control: implement BS (Downlink) Power Control (diff)
downloadOsmoBTS-63c1838c7ae4f51a6f50856c1aae072811d0a850.tar.xz
OsmoBTS-63c1838c7ae4f51a6f50856c1aae072811d0a850.zip
power_control: cosmetic: fix weird spacing
Change-Id: Ia5661e82372f958e7cda4041d7b5a1cfb1d64afe
-rw-r--r--src/common/power_control.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/common/power_control.c b/src/common/power_control.c
index 4c4e2831..a8bf0312 100644
--- a/src/common/power_control.c
+++ b/src/common/power_control.c
@@ -130,11 +130,11 @@ static int calc_delta(const struct bts_power_ctrl_params *params,
return delta;
}
- /*! compute the new MS POWER LEVEL communicated to the MS and store it in lchan.
- * \param lchan logical channel for which to compute (and in which to store) new power value.
- * \param[in] ms_power_lvl MS Power Level received from Uplink L1 SACCH Header in SACCH block.
- * \param[in] ul_rssi_dbm Signal level of the received SACCH block, in dBm.
- */
+/*! compute the new MS POWER LEVEL communicated to the MS and store it in lchan.
+ * \param lchan logical channel for which to compute (and in which to store) new power value.
+ * \param[in] ms_power_lvl MS Power Level received from Uplink L1 SACCH Header in SACCH block.
+ * \param[in] ul_rssi_dbm Signal level of the received SACCH block, in dBm.
+ */
int lchan_ms_pwr_ctrl(struct gsm_lchan *lchan,
const uint8_t ms_power_lvl,
const int8_t ul_rssi_dbm)
@@ -210,10 +210,10 @@ int lchan_ms_pwr_ctrl(struct gsm_lchan *lchan,
return 1;
}
- /*! compute the new Downlink attenuation value for the given logical channel.
- * \param lchan logical channel for which to compute (and in which to store) new power value.
- * \param[in] gh pointer to the beginning of (presumably) a Measurement Report.
- */
+/*! compute the new Downlink attenuation value for the given logical channel.
+ * \param lchan logical channel for which to compute (and in which to store) new power value.
+ * \param[in] gh pointer to the beginning of (presumably) a Measurement Report.
+ */
int lchan_bs_pwr_ctrl(struct gsm_lchan *lchan,
const struct gsm48_hdr *gh)
{