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 /apps/debug_menu.c | |
| 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 'apps/debug_menu.c')
| -rw-r--r-- | apps/debug_menu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c index ecdbe26..d127aef 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -385,8 +385,8 @@ bool dbg_flash_id(unsigned* p_manufacturer, unsigned* p_device, unsigned addr1, unsigned addr2) { -#if (CONFIG_CPU == PP5002) || (CONFIG_CPU == PP5020) - /* TODO: Implement for iPod */ +#ifdef CPU_PP + /* TODO: Implement for PortalPlayer */ (void)p_manufacturer; (void)p_device; (void)addr1; |