From 27138f35666a38ae2b96732996f8b56ece204946 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Fri, 16 Apr 2004 11:06:31 +0000 Subject: 2004-04-16 Ralf Corsepius * rtems/score/i386.h: Rename i386_swap_U* to i386_swap_u* (API consistency with other ports). --- cpukit/score/cpu/i386/ChangeLog | 5 +++++ cpukit/score/cpu/i386/rtems/score/i386.h | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) (limited to 'cpukit/score/cpu/i386') diff --git a/cpukit/score/cpu/i386/ChangeLog b/cpukit/score/cpu/i386/ChangeLog index 8eacede8f8..18d0de4498 100644 --- a/cpukit/score/cpu/i386/ChangeLog +++ b/cpukit/score/cpu/i386/ChangeLog @@ -1,3 +1,8 @@ +2004-04-16 Ralf Corsepius + + * rtems/score/i386.h: Rename i386_swap_U* to i386_swap_u* (API + consistency with other ports). + 2004-04-09 Ralf Corsepius * cpu_asm.S: Convert asm comments to C-comments to prevent gcc-3.4.0pre diff --git a/cpukit/score/cpu/i386/rtems/score/i386.h b/cpukit/score/cpu/i386/rtems/score/i386.h index 0d0bb4c35e..1e039b569f 100644 --- a/cpukit/score/cpu/i386/rtems/score/i386.h +++ b/cpukit/score/cpu/i386/rtems/score/i386.h @@ -115,7 +115,7 @@ extern "C" { * It must be static so it can be referenced indirectly. */ -static inline unsigned int i386_swap_U32( +static inline unsigned int i386_swap_u32( unsigned int value ) { @@ -131,7 +131,7 @@ static inline unsigned int i386_swap_U32( return( lout ); } -static inline unsigned int i386_swap_U16( +static inline unsigned int i386_swap_u16( unsigned int value ) { @@ -221,8 +221,8 @@ void *i386_Physical_to_logical( #define get_fs() i386_get_fs() #define get_gs() i386_get_gs() -#define CPU_swap_u32( _value ) i386_swap_U32( _value ) -#define CPU_swap_u16( _value ) i386_swap_U16( _value ) +#define CPU_swap_u32( _value ) i386_swap_u32( _value ) +#define CPU_swap_u16( _value ) i386_swap_u16( _value ) /* i80x86 I/O instructions */ -- cgit v1.2.3