summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/gen5200/bestcomm/bestcomm_glue.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-06 17:36:55 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-06 17:36:55 +0000
commit39d08d55e94d63aa0d4dd7281764a170382ae930 (patch)
tree19514ed39634459e482decfd2cfcb778bfcdc77e /c/src/lib/libbsp/powerpc/gen5200/bestcomm/bestcomm_glue.c
parent2008-09-06 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-39d08d55e94d63aa0d4dd7281764a170382ae930.tar.bz2
Convert to "bool".
Diffstat (limited to '')
-rw-r--r--c/src/lib/libbsp/powerpc/gen5200/bestcomm/bestcomm_glue.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/c/src/lib/libbsp/powerpc/gen5200/bestcomm/bestcomm_glue.c b/c/src/lib/libbsp/powerpc/gen5200/bestcomm/bestcomm_glue.c
index 7c54355d3d..d1c01336b1 100644
--- a/c/src/lib/libbsp/powerpc/gen5200/bestcomm/bestcomm_glue.c
+++ b/c/src/lib/libbsp/powerpc/gen5200/bestcomm/bestcomm_glue.c
@@ -201,7 +201,7 @@ static rtems_irq_connect_data bestcomm_glue_irq_data =
(rtems_irq_is_enabled) bestcomm_glue_isOn
};
-static boolean bestcomm_glue_is_initialized = FALSE;
+static bool bestcomm_glue_is_initialized = false;
/*=========================================================================*\
| Function: |
\*-------------------------------------------------------------------------*/
@@ -225,7 +225,7 @@ void bestcomm_glue_init
\*=========================================================================*/
{
if (!bestcomm_glue_is_initialized) {
- bestcomm_glue_is_initialized = TRUE;
+ bestcomm_glue_is_initialized = true;
/*
* Set task bar to begin of sram
*/
@@ -259,4 +259,3 @@ void bestcomm_glue_init
}
}
-