aboutsummaryrefslogtreecommitdiffstats
path: root/src/common/measurement.c
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2017-04-19 16:04:37 +0200
committerPhilipp Maier <pmaier@sysmocom.de>2017-05-17 18:56:51 +0200
commit2f028c4e2c29f63df9926435466aa35377947767 (patch)
treea61137624fd4584a321bd228b9fb4929744e2773 /src/common/measurement.c
parent67d8c72c2eab1d13bed3e8ac98338c996bf08df8 (diff)
measurement: make lchan_meas_check_compute() available to l1sap.c
lchan_meas_check_compute() is a static function measurement.c. In order to distribute the measurement result calculation events, we need to be able to call lchan_meas_check_compute() from l1sap.c Change-Id: Ideffe896613e0feda443bc13dac59dcdbbc605aa
Diffstat (limited to 'src/common/measurement.c')
-rw-r--r--src/common/measurement.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/measurement.c b/src/common/measurement.c
index 6b06138d..260304af 100644
--- a/src/common/measurement.c
+++ b/src/common/measurement.c
@@ -191,7 +191,7 @@ static uint8_t ber10k_to_rxqual(uint32_t ber10k)
return 7;
}
-static int lchan_meas_check_compute(struct gsm_lchan *lchan, uint32_t fn)
+int lchan_meas_check_compute(struct gsm_lchan *lchan, uint32_t fn)
{
struct gsm_meas_rep_unidir *mru;
uint32_t ber_full_sum = 0;