1
0
Fork 0
forked from len0rd/rockbox

iPod: Code cleanup - the bootloader now compiles with zero warnings

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7812 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dave Chapman 2005-11-11 17:51:35 +00:00
parent c2a0406e10
commit d31a32c501
17 changed files with 111 additions and 58 deletions

View file

@ -68,8 +68,7 @@ void sleep(int ticks)
void yield(void)
{
#if CONFIG_CPU == PP5020
/* Threading not yet implemented */
#warning Enable yield()
/* TODO: Threading not yet implemented */
return;
#endif
switch_thread();
@ -325,7 +324,8 @@ void tick_start(unsigned int interval_in_ms)
#elif CONFIG_CPU == PP5020
void tick_start(unsigned int interval_in_ms) {
#warning Implement tick_start
/* TODO: Implement tick_start */
(void)interval_in_ms;
}
#endif