summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-06 17:16:21 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-06 17:16:21 +0000
commit9f91d0fcb5fd01453bbe373445469a1581dc824a (patch)
treea3d78d294449e56b95c6caca464468ebc89ff51f /c
parent2008-09-06 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-9f91d0fcb5fd01453bbe373445469a1581dc824a.tar.bz2
Convert to bool.
Diffstat (limited to 'c')
-rw-r--r--c/src/lib/libbsp/powerpc/mpc8260ads/irq/irq.c2
-rw-r--r--c/src/lib/libbsp/powerpc/mpc8260ads/startup/bspstart.c8
2 files changed, 5 insertions, 5 deletions
diff --git a/c/src/lib/libbsp/powerpc/mpc8260ads/irq/irq.c b/c/src/lib/libbsp/powerpc/mpc8260ads/irq/irq.c
index 59f98122ea..0859e00626 100644
--- a/c/src/lib/libbsp/powerpc/mpc8260ads/irq/irq.c
+++ b/c/src/lib/libbsp/powerpc/mpc8260ads/irq/irq.c
@@ -528,7 +528,7 @@ void _ThreadProcessSignalsFromIrq (BSP_Exception_frame* ctx)
*/
if ( _Thread_Do_post_task_switch_extension ||
_Thread_Executing->do_post_task_switch_extension ) {
- _Thread_Executing->do_post_task_switch_extension = FALSE;
+ _Thread_Executing->do_post_task_switch_extension = false;
_API_extensions_Run_postswitch();
}
diff --git a/c/src/lib/libbsp/powerpc/mpc8260ads/startup/bspstart.c b/c/src/lib/libbsp/powerpc/mpc8260ads/startup/bspstart.c
index a4426ace31..5302ba88c6 100644
--- a/c/src/lib/libbsp/powerpc/mpc8260ads/startup/bspstart.c
+++ b/c/src/lib/libbsp/powerpc/mpc8260ads/startup/bspstart.c
@@ -65,13 +65,13 @@ extern unsigned long intrStackPtr;
uint32_t bsp_clock_speed;
uint32_t bsp_clicks_per_usec;
uint32_t bsp_serial_per_sec; /* Serial clocks per second */
-boolean bsp_serial_external_clock;
-boolean bsp_serial_xon_xoff;
-boolean bsp_serial_cts_rts;
+bool bsp_serial_external_clock;
+bool bsp_serial_xon_xoff;
+bool bsp_serial_cts_rts;
uint32_t bsp_serial_rate;
uint32_t bsp_timer_average_overhead; /* Average overhead of timer in ticks */
uint32_t bsp_timer_least_valid; /* Least valid number from timer */
-boolean bsp_timer_internal_clock; /* TRUE, when timer runs with CPU clk */
+bool bsp_timer_internal_clock; /* TRUE, when timer runs with CPU clk */
/*
* Use the shared implementations of the following routines.