1
0
Fork 0
forked from len0rd/rockbox

Kill warnings that annoy me when building for Gigabeat S.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17120 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Sevakis 2008-04-15 14:44:32 +00:00
parent c4a49c4e5f
commit 040b6cc654
5 changed files with 21 additions and 4 deletions

View file

@ -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);