forked from len0rd/rockbox
Fixed warnings on iFP.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8550 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
3c17330af6
commit
c31d2f84b7
5 changed files with 28 additions and 7 deletions
|
@ -56,8 +56,8 @@ static bool timer_set(long cycles, bool start)
|
|||
int phi = 0; /* bits for the prescaler */
|
||||
int prescale = 1;
|
||||
|
||||
#if CONFIG_CPU==PP5020
|
||||
/* TODO: Implement for iPod */
|
||||
#if (CONFIG_CPU==PP5020) || (CONFIG_CPU==PNX0101)
|
||||
/* TODO: Implement for iPod and iFP */
|
||||
(void)start;
|
||||
(void)phi;
|
||||
#endif
|
||||
|
@ -162,7 +162,7 @@ bool timer_register(int reg_prio, void (*unregister_callback)(void),
|
|||
if (reg_prio <= timer_prio || cycles == 0)
|
||||
return false;
|
||||
|
||||
#if CONFIG_CPU==PP5020
|
||||
#if (CONFIG_CPU==PP5020) || (CONFIG_CPU==PNX0101)
|
||||
/* TODO: Implement for iPod */
|
||||
(void)int_prio;
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue