1
0
Fork 0
forked from len0rd/rockbox

reduce the number of gigabeat warnings

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11316 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Marcoen Hirschberg 2006-10-23 13:11:57 +00:00
parent 500a761cb0
commit 37f7f0b23b
3 changed files with 8 additions and 3 deletions

View file

@ -167,6 +167,9 @@ static bool timer_set(long cycles, bool start)
else
cycles_new = cycles;
#elif CONFIG_CPU == S3C2440 /* TODO: Implement for the Gigabeat */
(void)start;
(void)cycles;
#endif /* CONFIG_CPU */
return true;
}
@ -197,7 +200,8 @@ bool timer_register(int reg_prio, void (*unregister_callback)(void),
if (reg_prio <= timer_prio || cycles == 0)
return false;
#if (CONFIG_CPU==PP5002) || (CONFIG_CPU==PP5020) || (CONFIG_CPU==PNX0101)
#if (CONFIG_CPU==PP5002) || (CONFIG_CPU==PP5020) || (CONFIG_CPU==PNX0101) \
|| (CONFIG_CPU==S3C2440)
/* TODO: Implement for iPod and iFP (if possible) */
(void)int_prio;
#endif