summaryrefslogtreecommitdiffstats
path: root/c/src/exec/score/inline
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-07-06 19:13:31 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-07-06 19:13:31 +0000
commit1d9403a3086e9e90544e94ce5a5b941306cf173b (patch)
treec2ac7320c679c4e556bbc7bfcb60472d1655239c /c/src/exec/score/inline
parentAdded objjectgetbyisr.c (diff)
downloadrtems-1d9403a3086e9e90544e94ce5a5b941306cf173b.tar.bz2
Removed unnecessary parentheses.
Diffstat (limited to 'c/src/exec/score/inline')
-rw-r--r--c/src/exec/score/inline/rtems/score/object.inl8
1 files changed, 4 insertions, 4 deletions
diff --git a/c/src/exec/score/inline/rtems/score/object.inl b/c/src/exec/score/inline/rtems/score/object.inl
index 1b435b4d4f..82a59b03d0 100644
--- a/c/src/exec/score/inline/rtems/score/object.inl
+++ b/c/src/exec/score/inline/rtems/score/object.inl
@@ -32,9 +32,9 @@ RTEMS_INLINE_ROUTINE Objects_Id _Objects_Build_id(
unsigned32 index
)
{
- return ( (the_class << OBJECTS_CLASS_START_BIT) |
- (node << OBJECTS_NODE_START_BIT) |
- (index << OBJECTS_INDEX_START_BIT) );
+ return (the_class << OBJECTS_CLASS_START_BIT) |
+ (node << OBJECTS_NODE_START_BIT) |
+ (index << OBJECTS_INDEX_START_BIT);
}
/*PAGE
@@ -172,7 +172,7 @@ RTEMS_INLINE_ROUTINE Objects_Control *_Objects_Get_local_object(
{
if ( index > information->maximum )
return NULL;
- return ( information->local_table[ index ] );
+ return information->local_table[ index ];
}
/*PAGE