From a04f3715c228985d97da9d91a394279bd9dadd52 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Mon, 24 Jan 2005 05:40:52 +0000 Subject: 2005-01-24 Ralf Corsepius * rtems/score/m68k.h: *_swap_u32( uint32_t ). --- cpukit/score/cpu/m68k/rtems/score/m68k.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'cpukit/score/cpu/m68k/rtems/score/m68k.h') diff --git a/cpukit/score/cpu/m68k/rtems/score/m68k.h b/cpukit/score/cpu/m68k/rtems/score/m68k.h index b9af1c52dd..be9b9dbfb4 100644 --- a/cpukit/score/cpu/m68k/rtems/score/m68k.h +++ b/cpukit/score/cpu/m68k/rtems/score/m68k.h @@ -339,8 +339,8 @@ extern "C" { /* There are no rotate commands in Coldfire architecture. We will use * generic implementation of endian swapping for Coldfire. */ -static inline unsigned int m68k_swap_u32( - unsigned int value +static inline uint32_t m68k_swap_u32( + uint32_t value ) { uint32_t byte1, byte2, byte3, byte4, swapped; @@ -363,11 +363,11 @@ static inline uint16_t m68k_swap_u16( #else -static inline unsigned int m68k_swap_u32( - unsigned int value +static inline uint32_t m68k_swap_u32( + uint32_t value ) { - unsigned int swapped = value; + uint32_t swapped = value; asm volatile( "rorw #8,%0" : "=d" (swapped) : "0" (swapped) ); asm volatile( "swap %0" : "=d" (swapped) : "0" (swapped) ); -- cgit v1.2.3