aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/chan_alloc.c
diff options
context:
space:
mode:
authorHarald Welte (local) <laflocal@hanuman.gnumonks.org>2009-12-28 16:36:28 +0100
committerHarald Welte <laforge@netfilter.org>2009-12-29 11:00:18 +0100
commit82ff397e3118936e4a714334d82b75f765e6d842 (patch)
treeed7b13f42aa25f89f2f0f5c82fefc3a24fd09de3 /openbsc/src/chan_alloc.c
parent1887f9d153497adc37cec5b8db6b7423ff64d6c0 (diff)
export the 'trx_is_usable() function and use it from paging
this ensures we don't send paging requests to currently inactive transceivers.
Diffstat (limited to 'openbsc/src/chan_alloc.c')
-rw-r--r--openbsc/src/chan_alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/chan_alloc.c b/openbsc/src/chan_alloc.c
index abf4de891..8141e4774 100644
--- a/openbsc/src/chan_alloc.c
+++ b/openbsc/src/chan_alloc.c
@@ -47,7 +47,7 @@ static int ts_is_usable(struct gsm_bts_trx_ts *ts)
return 1;
}
-static int trx_is_usable(struct gsm_bts_trx *trx)
+int trx_is_usable(struct gsm_bts_trx *trx)
{
/* FIXME: How does this behave for BS-11 ? */
if (is_ipaccess_bts(trx->bts)) {