From 6d0a8b222be80ca22eace0b86a5bc283cebf13f0 Mon Sep 17 00:00:00 2001 From: Ludwig Ortmann Date: Sat, 16 May 2015 14:16:32 +0200 Subject: [PATCH] sys/compat/hwtimer: fix unused fcpu warning --- sys/compat/hwtimer/hwtimer_arch.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/compat/hwtimer/hwtimer_arch.c b/sys/compat/hwtimer/hwtimer_arch.c index 0325e33026..95a2399b71 100644 --- a/sys/compat/hwtimer/hwtimer_arch.c +++ b/sys/compat/hwtimer/hwtimer_arch.c @@ -35,6 +35,8 @@ void (*timeout_handler)(int); void hwtimer_arch_init(void (*handler)(int), uint32_t fcpu) { + (void) fcpu; + timeout_handler = handler; timer_init(HW_TIMER, 1, &irq_handler); }