summaryrefslogtreecommitdiff
path: root/apps/plugins/test_gfx.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/test_gfx.c')
-rw-r--r--apps/plugins/test_gfx.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/test_gfx.c b/apps/plugins/test_gfx.c
index cde77c55fe..4081e64d13 100644
--- a/apps/plugins/test_gfx.c
+++ b/apps/plugins/test_gfx.c
@@ -402,7 +402,7 @@ static void time_text(void) /* tests mono_bitmap performance */
402/* plugin entry point */ 402/* plugin entry point */
403enum plugin_status plugin_start(const void* parameter) 403enum plugin_status plugin_start(const void* parameter)
404{ 404{
405#ifndef SIMULATOR 405#ifdef HAVE_ADJUSTABLE_CPU_FREQ
406 int cpu_freq; 406 int cpu_freq;
407#endif 407#endif
408 408
@@ -447,7 +447,7 @@ enum plugin_status plugin_start(const void* parameter)
447 6*4*DURATION/HZ); 447 6*4*DURATION/HZ);
448 init_rand_table(); 448 init_rand_table();
449 449
450#ifndef SIMULATOR 450#ifdef HAVE_ADJUSTABLE_CPU_FREQ
451 cpu_freq = *rb->cpu_frequency; /* remember CPU frequency */ 451 cpu_freq = *rb->cpu_frequency; /* remember CPU frequency */
452#endif 452#endif
453 453
@@ -458,7 +458,7 @@ enum plugin_status plugin_start(const void* parameter)
458 time_fillrect(); 458 time_fillrect();
459 time_text(); 459 time_text();
460 460
461#ifndef SIMULATOR 461#ifdef HAVE_ADJUSTABLE_CPU_FREQ
462 if (*rb->cpu_frequency != cpu_freq) 462 if (*rb->cpu_frequency != cpu_freq)
463 rb->fdprintf(log_fd, "\nCPU: %s\n", "clock changed!"); 463 rb->fdprintf(log_fd, "\nCPU: %s\n", "clock changed!");
464 else 464 else