Change if CONFIG_CPU==PP50XX to ifdef CPU_PP where appropriate

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11569 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Ankers 2006-11-22 00:41:30 +00:00
parent 336cb6898e
commit 242cbd5cd7
10 changed files with 21 additions and 25 deletions

View file

@ -70,7 +70,7 @@ struct mutex
};
/* global tick variable */
#if ((CONFIG_CPU == PP5002) || (CONFIG_CPU == PP5020)) && defined(BOOTLOADER)
#if defined(CPU_PP) && defined(BOOTLOADER)
/* We don't enable interrupts in the iPod bootloader, so we need to fake
the current_tick variable */
#define current_tick (signed)(USEC_TIMER/10000)