summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu/arm/at91rm9200/timer/timer.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-05 11:55:58 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-05 11:55:58 +0000
commit3551166d7b747c5efbd1659e453493f4e0e0e93b (patch)
tree03c44c6a2ee2837004d8028d281a62c34fdad50a /c/src/lib/libcpu/arm/at91rm9200/timer/timer.c
parent2008-09-05 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-3551166d7b747c5efbd1659e453493f4e0e0e93b.tar.bz2
Convert to "bool".
Diffstat (limited to 'c/src/lib/libcpu/arm/at91rm9200/timer/timer.c')
-rw-r--r--c/src/lib/libcpu/arm/at91rm9200/timer/timer.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/c/src/lib/libcpu/arm/at91rm9200/timer/timer.c b/c/src/lib/libcpu/arm/at91rm9200/timer/timer.c
index 35cf5cb6a8..7e407d82cf 100644
--- a/c/src/lib/libcpu/arm/at91rm9200/timer/timer.c
+++ b/c/src/lib/libcpu/arm/at91rm9200/timer/timer.c
@@ -28,7 +28,7 @@
#include <at91rm9200_pmc.h>
uint16_t tstart;
-rtems_boolean benchmark_timer_find_average_overhead;
+bool benchmark_timer_find_average_overhead;
uint32_t tick_time;
/*
* Set up TC0 -
@@ -92,9 +92,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;
}