aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2018-08-17 11:57:34 +0200
committerHarald Welte <laforge@gnumonks.org>2018-08-17 16:24:26 +0000
commitb5a28bd9678c7af21679349b5f1972aef5ecaab3 (patch)
tree464577b0647fd5fbbb87cb3ad6e7c518a34f1ff0 /include
parent829263afc4aaf3304657acafb398ad403b045c27 (diff)
cosmetic: unify measurement sample handling in one function
In l1sap.c we call lchan_new_ul_meas() and lchan_meas_check_compute() directly in sequence. Lets unify thos two steps inside measurement.c so that we only need to call one function from l1sap.c. Change-Id: If48bc7442dfaab8c36b93949f741de6e836e792a Related: OS#2975
Diffstat (limited to 'include')
-rw-r--r--include/osmo-bts/measurement.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/osmo-bts/measurement.h b/include/osmo-bts/measurement.h
index e32c8e81..283b0ffc 100644
--- a/include/osmo-bts/measurement.h
+++ b/include/osmo-bts/measurement.h
@@ -8,4 +8,6 @@ int lchan_new_ul_meas(struct gsm_lchan *lchan, struct bts_ul_meas *ulm, uint32_t
int lchan_meas_check_compute(struct gsm_lchan *lchan, uint32_t fn);
+void lchan_meas_process_measurement(struct gsm_lchan *lchan, struct bts_ul_meas *ulm, uint32_t fn);
+
#endif