1
0
Fork 0
forked from len0rd/rockbox

use #ifdef x instead of #if defined(x)

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9581 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Christian Gmeiner 2006-04-09 15:00:30 +00:00
parent eb7d4f88ea
commit a91b794cb2
6 changed files with 11 additions and 11 deletions

View file

@ -299,7 +299,7 @@ void cleanup(void *parameter)
{
(void)parameter;
#if defined(HAVE_ADJUSTABLE_CPU_FREQ)
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
rb->cpu_boost(false);
#endif
#ifndef HAVE_LCD_COLOR
@ -338,7 +338,7 @@ int main(void)
}
#endif
#if defined(HAVE_ADJUSTABLE_CPU_FREQ)
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
rb->cpu_boost(true);
#endif
#ifndef HAVE_LCD_COLOR