summaryrefslogtreecommitdiffstats
path: root/src/host/layer23/src/misc/app_echo_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/host/layer23/src/misc/app_echo_test.c')
-rw-r--r--src/host/layer23/src/misc/app_echo_test.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/host/layer23/src/misc/app_echo_test.c b/src/host/layer23/src/misc/app_echo_test.c
index 0adab7f9..3d937d23 100644
--- a/src/host/layer23/src/misc/app_echo_test.c
+++ b/src/host/layer23/src/misc/app_echo_test.c
@@ -34,7 +34,7 @@
static struct {
- struct timer_list timer;
+ struct osmo_timer_list timer;
} test_data;
static void test_tmr_cb(void *data)
@@ -42,7 +42,7 @@ static void test_tmr_cb(void *data)
struct osmocom_ms *ms = data;
l1ctl_tx_echo_req(ms, 62);
- bsc_schedule_timer(&test_data.timer, 1, 0);
+ osmo_timer_schedule(&test_data.timer, 1, 0);
}
int l23_app_init(struct osmocom_ms *ms)
@@ -50,7 +50,7 @@ int l23_app_init(struct osmocom_ms *ms)
test_data.timer.cb = &test_tmr_cb;
test_data.timer.data = ms;
- bsc_schedule_timer(&test_data.timer, 1, 0);
+ osmo_timer_schedule(&test_data.timer, 1, 0);
return 0;
}