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:
parent
eb7d4f88ea
commit
a91b794cb2
6 changed files with 11 additions and 11 deletions
|
@ -784,7 +784,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
|
||||||
rb = api;
|
rb = api;
|
||||||
(void)parameter;
|
(void)parameter;
|
||||||
|
|
||||||
#if defined(HAVE_ADJUSTABLE_CPU_FREQ)
|
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
|
||||||
rb->cpu_boost(true);
|
rb->cpu_boost(true);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -853,7 +853,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
|
||||||
|
|
||||||
rb->splash(HZ, true, "Bye");
|
rb->splash(HZ, true, "Bye");
|
||||||
|
|
||||||
#if defined(HAVE_ADJUSTABLE_CPU_FREQ)
|
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
|
||||||
rb->cpu_boost(false);
|
rb->cpu_boost(false);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -299,7 +299,7 @@ void cleanup(void *parameter)
|
||||||
{
|
{
|
||||||
(void)parameter;
|
(void)parameter;
|
||||||
|
|
||||||
#if defined(HAVE_ADJUSTABLE_CPU_FREQ)
|
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
|
||||||
rb->cpu_boost(false);
|
rb->cpu_boost(false);
|
||||||
#endif
|
#endif
|
||||||
#ifndef HAVE_LCD_COLOR
|
#ifndef HAVE_LCD_COLOR
|
||||||
|
@ -338,7 +338,7 @@ int main(void)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(HAVE_ADJUSTABLE_CPU_FREQ)
|
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
|
||||||
rb->cpu_boost(true);
|
rb->cpu_boost(true);
|
||||||
#endif
|
#endif
|
||||||
#ifndef HAVE_LCD_COLOR
|
#ifndef HAVE_LCD_COLOR
|
||||||
|
|
|
@ -190,7 +190,7 @@ int main(void)
|
||||||
rb->lcd_puts(0, 0, pbuf);
|
rb->lcd_puts(0, 0, pbuf);
|
||||||
rb->lcd_update();
|
rb->lcd_update();
|
||||||
|
|
||||||
#if defined(HAVE_ADJUSTABLE_CPU_FREQ)
|
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
|
||||||
rb->cpu_boost(true);
|
rb->cpu_boost(true);
|
||||||
#endif
|
#endif
|
||||||
gray_show(true); /* switch on greyscale overlay */
|
gray_show(true); /* switch on greyscale overlay */
|
||||||
|
@ -252,7 +252,7 @@ int main(void)
|
||||||
time / 100, time % 100);
|
time / 100, time % 100);
|
||||||
rb->lcd_puts(0, 0, pbuf);
|
rb->lcd_puts(0, 0, pbuf);
|
||||||
gray_deferred_lcd_update(); /* schedule an lcd_update() */
|
gray_deferred_lcd_update(); /* schedule an lcd_update() */
|
||||||
#if defined(HAVE_ADJUSTABLE_CPU_FREQ)
|
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
|
||||||
rb->cpu_boost(false);
|
rb->cpu_boost(false);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -2453,7 +2453,7 @@ struct t_disp* get_image(struct jpeg* p_jpg, int ds)
|
||||||
|
|
||||||
/* the actual decoding */
|
/* the actual decoding */
|
||||||
time = *rb->current_tick;
|
time = *rb->current_tick;
|
||||||
#if defined(HAVE_ADJUSTABLE_CPU_FREQ)
|
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
|
||||||
rb->cpu_boost(true);
|
rb->cpu_boost(true);
|
||||||
status = jpeg_decode(p_jpg, p_disp->bitmap, ds, cb_progess);
|
status = jpeg_decode(p_jpg, p_disp->bitmap, ds, cb_progess);
|
||||||
rb->cpu_boost(false);
|
rb->cpu_boost(false);
|
||||||
|
|
|
@ -491,7 +491,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
|
||||||
/* main loop */
|
/* main loop */
|
||||||
while (true) {
|
while (true) {
|
||||||
if (redraw > REDRAW_NONE) {
|
if (redraw > REDRAW_NONE) {
|
||||||
#if defined(HAVE_ADJUSTABLE_CPU_FREQ)
|
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
|
||||||
rb->cpu_boost(true);
|
rb->cpu_boost(true);
|
||||||
#endif
|
#endif
|
||||||
if (redraw == REDRAW_FULL) {
|
if (redraw == REDRAW_FULL) {
|
||||||
|
@ -504,7 +504,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
|
||||||
else
|
else
|
||||||
calc_mandelbrot_low_prec();
|
calc_mandelbrot_low_prec();
|
||||||
|
|
||||||
#if defined(HAVE_ADJUSTABLE_CPU_FREQ)
|
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
|
||||||
rb->cpu_boost(false);
|
rb->cpu_boost(false);
|
||||||
#endif
|
#endif
|
||||||
px_min = 0;
|
px_min = 0;
|
||||||
|
|
|
@ -71,7 +71,7 @@ void emu_run(void)
|
||||||
|
|
||||||
vid_begin();
|
vid_begin();
|
||||||
lcd_begin();
|
lcd_begin();
|
||||||
#if defined(HAVE_ADJUSTABLE_CPU_FREQ)
|
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
|
||||||
rb->cpu_boost(true);
|
rb->cpu_boost(true);
|
||||||
#endif
|
#endif
|
||||||
while(!shut)
|
while(!shut)
|
||||||
|
@ -123,7 +123,7 @@ void emu_run(void)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(HAVE_ADJUSTABLE_CPU_FREQ)
|
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
|
||||||
rb->cpu_boost(false);
|
rb->cpu_boost(false);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue