summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/include/rtems/rtems/support.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-04-18 06:05:35 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-04-18 06:05:35 +0000
commit50f32b11653429546d7b8ff2693b5232b885e201 (patch)
treea8821a7e3025ef47082cc21ccbb56551382cdc3f /cpukit/rtems/include/rtems/rtems/support.h
parentRemove stray white spaces. (diff)
downloadrtems-50f32b11653429546d7b8ff2693b5232b885e201.tar.bz2
Remove stray white spaces.
Diffstat (limited to 'cpukit/rtems/include/rtems/rtems/support.h')
-rw-r--r--cpukit/rtems/include/rtems/rtems/support.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/cpukit/rtems/include/rtems/rtems/support.h b/cpukit/rtems/include/rtems/rtems/support.h
index 694d9ff690..591bbd736c 100644
--- a/cpukit/rtems/include/rtems/rtems/support.h
+++ b/cpukit/rtems/include/rtems/rtems/support.h
@@ -35,10 +35,10 @@ extern "C" {
* This must be implemented as a macro for use in Configuration Tables.
*
*/
-
+
#define rtems_build_name( _C1, _C2, _C3, _C4 ) \
( (uint32_t )(_C1) << 24 | (uint32_t )(_C2) << 16 | (uint32_t )(_C3) << 8 | (uint32_t )(_C4) )
-
+
/*
* rtems_get_class
*
@@ -47,10 +47,10 @@ extern "C" {
* This function returns the class portion of the ID.
*
*/
-
+
#define rtems_get_class( _id ) \
_Objects_Get_class( _id )
-
+
/*
* rtems_get_node
*
@@ -59,10 +59,10 @@ extern "C" {
* This function returns the node portion of the ID.
*
*/
-
+
#define rtems_get_node( _id ) \
_Objects_Get_node( _id )
-
+
/*
* rtems_get_index
*
@@ -71,7 +71,7 @@ extern "C" {
* This function returns the index portion of the ID.
*
*/
-
+
#define rtems_get_index( _id ) \
_Objects_Get_index( _id )