aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2012-12-29 22:14:08 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2013-01-03 16:39:41 +0100
commit3177f2b42f1565d47ee91c401773ff43114964da (patch)
tree5f16e99e48694beae9fee0b242e3904e17815b30
parent552989ad5762e051eb1a758bc61d8ce1d3c5e009 (diff)
sysmobts: Fix the comment referring to the value of the timeout
Right now it is 30 seconds and not 10.
-rw-r--r--src/osmo-bts-sysmo/l1_if.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osmo-bts-sysmo/l1_if.c b/src/osmo-bts-sysmo/l1_if.c
index cee3718..524b463 100644
--- a/src/osmo-bts-sysmo/l1_if.c
+++ b/src/osmo-bts-sysmo/l1_if.c
@@ -233,7 +233,7 @@ int l1if_req_compl(struct femtol1_hdl *fl1h, struct msgb *msg,
osmo_wqueue_enqueue(wqueue, msg);
llist_add(&wlc->list, &fl1h->wlc_list);
- /* schedule a timer for 10 seconds. If DSP fails to respond, we terminate */
+ /* schedule a timer for timeout_secs seconds. If DSP fails to respond, we terminate */
wlc->timer.data = wlc;
wlc->timer.cb = l1if_req_timeout;
osmo_timer_schedule(&wlc->timer, timeout_secs, 0);