diff options
Diffstat (limited to 'firmware/timer.c')
| -rw-r--r-- | firmware/timer.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/firmware/timer.c b/firmware/timer.c index c803048..3d522ef 100644 --- a/firmware/timer.c +++ b/firmware/timer.c @@ -212,6 +212,8 @@ static bool timer_set(long cycles, bool start) return true; #elif (CONFIG_CPU == IMX31L) /* TODO */ + (void)cycles; (void)start; + return false; #else return __TIMER_SET(cycles, start); #endif /* CONFIG_CPU */ @@ -280,6 +282,7 @@ bool timer_register(int reg_prio, void (*unregister_callback)(void), return true; #elif CONFIG_CPU == IMX31L /* TODO */ + return false; #else return __TIMER_REGISTER(reg_prio, unregister_callback, cycles, int_prio, timer_callback); |