aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2018-01-08 16:52:37 +0100
committerHarald Welte <laforge@gnumonks.org>2018-01-19 22:09:19 +0000
commit2660c0412d6c5eb44d1bb09385231b6fd10a6a9e (patch)
tree00724527da4dd559d0afef0eff5e2f1cb3edc987
parent1c251f0c9f59a56c991b254563455adf6c678200 (diff)
HO: make bts_by_arfcn_bsic() public
-rw-r--r--include/osmocom/bsc/handover_decision.h2
-rw-r--r--src/libbsc/handover_decision.c4
2 files changed, 4 insertions, 2 deletions
diff --git a/include/osmocom/bsc/handover_decision.h b/include/osmocom/bsc/handover_decision.h
index fe551cace..09430d889 100644
--- a/include/osmocom/bsc/handover_decision.h
+++ b/include/osmocom/bsc/handover_decision.h
@@ -1,3 +1,5 @@
#pragma once
+struct gsm_bts *bts_by_arfcn_bsic(const struct gsm_network *net, uint16_t arfcn, uint8_t bsic);
+
void handover_decision_1_init(void);
diff --git a/src/libbsc/handover_decision.c b/src/libbsc/handover_decision.c
index 93ca28bfa..19fb3ab41 100644
--- a/src/libbsc/handover_decision.c
+++ b/src/libbsc/handover_decision.c
@@ -36,8 +36,8 @@
#include <osmocom/bsc/handover_cfg.h>
/* Find BTS by ARFCN and BSIC */
-static struct gsm_bts *bts_by_arfcn_bsic(const struct gsm_network *net,
- uint16_t arfcn, uint8_t bsic)
+struct gsm_bts *bts_by_arfcn_bsic(const struct gsm_network *net,
+ uint16_t arfcn, uint8_t bsic)
{
struct gsm_bts *bts;