summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu/powerpc/mpc8xx
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-05 12:11:47 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-05 12:11:47 +0000
commit3942ccef5616448fa3aea482b41dc96db6993945 (patch)
treeee2eccedd850b45dad0b58ec72b47de78f4f46e9 /c/src/lib/libcpu/powerpc/mpc8xx
parent2008-09-05 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-3942ccef5616448fa3aea482b41dc96db6993945.tar.bz2
Convert to "bool".
Diffstat (limited to 'c/src/lib/libcpu/powerpc/mpc8xx')
-rw-r--r--c/src/lib/libcpu/powerpc/mpc8xx/timer/timer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/src/lib/libcpu/powerpc/mpc8xx/timer/timer.c b/c/src/lib/libcpu/powerpc/mpc8xx/timer/timer.c
index dd58cbe78e..d2996020c1 100644
--- a/c/src/lib/libcpu/powerpc/mpc8xx/timer/timer.c
+++ b/c/src/lib/libcpu/powerpc/mpc8xx/timer/timer.c
@@ -46,7 +46,7 @@
#include <mpc8xx.h>
static volatile uint32_t Timer_starting;
-static rtems_boolean benchmark_timer_find_average_overhead;
+static bool benchmark_timer_find_average_overhead;
/*
* This is so small that this code will be reproduced where needed.
@@ -91,7 +91,7 @@ int benchmark_timer_read(void)
}
}
-void benchmark_timer_disable_subtracting_average_overhead(rtems_boolean find_flag)
+void benchmark_timer_disable_subtracting_average_overhead(bool find_flag)
{
benchmark_timer_find_average_overhead = find_flag;
}