aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2012-07-20 10:27:31 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2013-01-28 16:25:25 +0100
commit577a3dacd8072c9f2535057d3ed82afa1c0902d7 (patch)
treecd4ef4ce788ff58f6610b9221b95137f3fe69898
parentd7755a287f265bd2edc61ca5569c0d4b215b6d90 (diff)
bts: Allow to exclude a BTS from the global RF lock handling
Some BTS might be in locations where they can run all the time, allow to exclude them from the global lock handling.
-rw-r--r--openbsc/src/libbsc/bsc_rf_ctrl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsc/src/libbsc/bsc_rf_ctrl.c b/openbsc/src/libbsc/bsc_rf_ctrl.c
index bd36e1884..20f8b5f51 100644
--- a/openbsc/src/libbsc/bsc_rf_ctrl.c
+++ b/openbsc/src/libbsc/bsc_rf_ctrl.c
@@ -262,14 +262,14 @@ static void grace_timeout(void *_data)
static int enter_grace(struct osmo_bsc_rf *rf)
{
if (osmo_timer_pending(&rf->grace_timeout)) {
- LOGP(DLINP, LOGL_NOTICE, "RF Grace timer is pending. Not restarting.\n");
+ LOGP(DINP, LOGL_NOTICE, "RF Grace timer is pending. Not restarting.\n");
return 0;
}
rf->grace_timeout.cb = grace_timeout;
rf->grace_timeout.data = rf;
osmo_timer_schedule(&rf->grace_timeout, rf->gsm_network->bsc_data->mid_call_timeout, 0);
- LOGP(DLINP, LOGL_NOTICE, "Going to switch RF off in %d seconds.\n",
+ LOGP(DINP, LOGL_NOTICE, "Going to switch RF off in %d seconds.\n",
rf->gsm_network->bsc_data->mid_call_timeout);
send_signal(rf, S_RF_GRACE);