From 3177f2b42f1565d47ee91c401773ff43114964da Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Sat, 29 Dec 2012 22:14:08 +0100 Subject: [PATCH] sysmobts: Fix the comment referring to the value of the timeout Right now it is 30 seconds and not 10. --- src/osmo-bts-sysmo/l1_if.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osmo-bts-sysmo/l1_if.c b/src/osmo-bts-sysmo/l1_if.c index cee3718a8..524b46397 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);