summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-08-27 21:45:05 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-08-27 21:45:05 +0000
commit4dd986fa970deafb80734e3f7cc853331c7f4617 (patch)
tree79b9ba3d5cfe4b381b4b95b2a6048742c40d1ada /c
parent2008-08-27 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-4dd986fa970deafb80734e3f7cc853331c7f4617.tar.bz2
Eliminate rtems_boolean.
Diffstat (limited to 'c')
-rw-r--r--c/src/lib/libbsp/arm/gba/timer/timer.c4
-rw-r--r--c/src/lib/libbsp/arm/nds/timer/timer.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/c/src/lib/libbsp/arm/gba/timer/timer.c b/c/src/lib/libbsp/arm/gba/timer/timer.c
index ee61df823d..f1135bc28d 100644
--- a/c/src/lib/libbsp/arm/gba/timer/timer.c
+++ b/c/src/lib/libbsp/arm/gba/timer/timer.c
@@ -55,7 +55,7 @@
#define GBA_TM0CNT_PS 0x0003
#endif
-rtems_boolean Timer_driver_Find_average_overhead;
+bool Timer_driver_Find_average_overhead;
/**
* @brief Timer_initialize start TM0 and TM1
@@ -143,7 +143,7 @@ rtems_status_code Empty_function( void )
* @param find_flag boolean find_flag
* @return None
*/
-void Set_find_average_overhead(rtems_boolean find_flag)
+void Set_find_average_overhead(bool find_flag)
{
Timer_driver_Find_average_overhead = find_flag;
}
diff --git a/c/src/lib/libbsp/arm/nds/timer/timer.c b/c/src/lib/libbsp/arm/nds/timer/timer.c
index 1ce26d29c4..f22915e8ac 100644
--- a/c/src/lib/libbsp/arm/nds/timer/timer.c
+++ b/c/src/lib/libbsp/arm/nds/timer/timer.c
@@ -15,7 +15,7 @@
#include <bsp.h>
#include <nds.h>
-rtems_boolean Timer_driver_Find_average_overhead;
+bool Timer_driver_Find_average_overhead;
void
Timer_initialize (void)
@@ -56,7 +56,7 @@ Empty_function (void)
}
void
-Set_find_average_overhead (rtems_boolean find_flag)
+Set_find_average_overhead (bool find_flag)
{
Timer_driver_Find_average_overhead = find_flag;
}