diff options
| author | Daniel Ankers <dan@weirdo.org.uk> | 2006-11-22 00:41:30 +0000 |
|---|---|---|
| committer | Daniel Ankers <dan@weirdo.org.uk> | 2006-11-22 00:41:30 +0000 |
| commit | 242cbd5cd73542c79020a4ce9a8e83ee0391bc72 (patch) | |
| tree | a1a66ed8d4eb65db38daedfe701138aa0bde726d /firmware/export/kernel.h | |
| parent | 336cb6898ef55ea6480a0b5547d30bb5029c79ef (diff) | |
| download | rockbox-242cbd5cd73542c79020a4ce9a8e83ee0391bc72.zip rockbox-242cbd5cd73542c79020a4ce9a8e83ee0391bc72.tar.gz rockbox-242cbd5cd73542c79020a4ce9a8e83ee0391bc72.tar.bz2 rockbox-242cbd5cd73542c79020a4ce9a8e83ee0391bc72.tar.xz | |
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
Diffstat (limited to 'firmware/export/kernel.h')
| -rw-r--r-- | firmware/export/kernel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/export/kernel.h b/firmware/export/kernel.h index 32c052a..2474c6d 100644 --- a/firmware/export/kernel.h +++ b/firmware/export/kernel.h @@ -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) |