summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/mvme167/timer
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-05 08:46:27 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-05 08:46:27 +0000
commit907bf4b86bacbc5c0775ef5d6e63f6d74bdb8376 (patch)
tree415100452c918992e0ef8f5dd8617b4fba665ced /c/src/lib/libbsp/m68k/mvme167/timer
parent2008-09-05 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-907bf4b86bacbc5c0775ef5d6e63f6d74bdb8376.tar.bz2
Convert to "bool".
Diffstat (limited to 'c/src/lib/libbsp/m68k/mvme167/timer')
-rw-r--r--c/src/lib/libbsp/m68k/mvme167/timer/timer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/c/src/lib/libbsp/m68k/mvme167/timer/timer.c b/c/src/lib/libbsp/m68k/mvme167/timer/timer.c
index 5d0f10671f..bdf6fa53d0 100644
--- a/c/src/lib/libbsp/m68k/mvme167/timer/timer.c
+++ b/c/src/lib/libbsp/m68k/mvme167/timer/timer.c
@@ -42,11 +42,11 @@
uint32_t Ttimer_val;
/*
- * Set to TRUE to return raw value. Normally zero. Depends on being allocated
+ * Set to true to return raw value. Normally zero. Depends on being allocated
* in the .bss section and on that section being explicitly zeroed at boot
* time.
*/
-rtems_boolean benchmark_timer_find_average_overhead;
+bool benchmark_timer_find_average_overhead;
rtems_isr timerisr(void);
@@ -129,7 +129,7 @@ int benchmark_timer_read(void)
* Output parameters: time in microseconds
*/
void benchmark_timer_disable_subtracting_average_overhead(
- rtems_boolean find_flag
+ bool find_flag
)
{
benchmark_timer_find_average_overhead = find_flag;