2007-12-11 Joel Sherrill <joel.sherrill@OARcorp.com>

* rtems/score/cpu.h: Style.
This commit is contained in:
Joel Sherrill
2007-12-11 23:42:15 +00:00
parent c922ec6c65
commit 5c5d438602
2 changed files with 6 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
2007-12-11 Joel Sherrill <joel.sherrill@OARcorp.com>
* rtems/score/cpu.h: Style.
2007-12-10 Joel Sherrill <joel.sherrill@oarcorp.com>
* rtems/score/cpu.h: Fix Doxygen.

View File

@@ -1223,7 +1223,7 @@ static inline uint32_t CPU_swap_u32(
uint32_t value
)
{
uint32_t byte1, byte2, byte3, byte4, swapped;
uint32_t byte1, byte2, byte3, byte4, swapped;
byte4 = (value >> 24) & 0xff;
byte3 = (value >> 16) & 0xff;
@@ -1231,7 +1231,7 @@ static inline uint32_t CPU_swap_u32(
byte1 = value & 0xff;
swapped = (byte1 << 24) | (byte2 << 16) | (byte3 << 8) | byte4;
return( swapped );
return swapped;
}
/**