From ec8973ed4840615a0d4f27df601b72400bd450f3 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Mon, 24 Jan 2005 05:43:40 +0000 Subject: 2005-01-24 Ralf Corsepius * rtems/score/cpu.h: *_swap_u32( uint32_t ). --- cpukit/score/cpu/arm/ChangeLog | 4 ++++ cpukit/score/cpu/arm/rtems/score/cpu.h | 4 ++-- cpukit/score/cpu/avr/ChangeLog | 4 ++++ cpukit/score/cpu/avr/rtems/score/cpu.h | 4 ++-- cpukit/score/cpu/c4x/ChangeLog | 4 ++++ cpukit/score/cpu/c4x/rtems/score/cpu.h | 4 ++-- cpukit/score/cpu/mips/ChangeLog | 4 ++++ cpukit/score/cpu/mips/rtems/score/cpu.h | 4 ++-- cpukit/score/cpu/no_cpu/ChangeLog | 4 ++++ cpukit/score/cpu/no_cpu/rtems/score/cpu.h | 4 ++-- cpukit/score/cpu/or32/ChangeLog | 4 ++++ cpukit/score/cpu/or32/rtems/score/cpu.h | 4 ++-- cpukit/score/cpu/sparc/ChangeLog | 4 ++++ cpukit/score/cpu/sparc/rtems/score/cpu.h | 4 ++-- cpukit/score/cpu/unix/ChangeLog | 4 ++++ cpukit/score/cpu/unix/rtems/score/cpu.h | 4 ++-- 16 files changed, 48 insertions(+), 16 deletions(-) (limited to 'cpukit') diff --git a/cpukit/score/cpu/arm/ChangeLog b/cpukit/score/cpu/arm/ChangeLog index 833f7ef613..6214f8d99c 100644 --- a/cpukit/score/cpu/arm/ChangeLog +++ b/cpukit/score/cpu/arm/ChangeLog @@ -1,3 +1,7 @@ +2005-01-24 Ralf Corsepius + + * rtems/score/cpu.h: *_swap_u32( uint32_t ). + 2005-01-24 Ralf Corsepius * rtems/score/types.h: #include . diff --git a/cpukit/score/cpu/arm/rtems/score/cpu.h b/cpukit/score/cpu/arm/rtems/score/cpu.h index 6841bdbeaf..53e50ac671 100644 --- a/cpukit/score/cpu/arm/rtems/score/cpu.h +++ b/cpukit/score/cpu/arm/rtems/score/cpu.h @@ -895,8 +895,8 @@ void _CPU_Context_restore_fp( * will be fetched incorrectly. */ -static inline unsigned int CPU_swap_u32( - unsigned int value +static inline uint32_t CPU_swap_u32( + uint32_t value ) { uint32_t tmp = value; /* make compiler warnings go away */ diff --git a/cpukit/score/cpu/avr/ChangeLog b/cpukit/score/cpu/avr/ChangeLog index c00a78eed1..4c5268b887 100644 --- a/cpukit/score/cpu/avr/ChangeLog +++ b/cpukit/score/cpu/avr/ChangeLog @@ -1,3 +1,7 @@ +2005-01-24 Ralf Corsepius + + * rtems/score/cpu.h: *_swap_u32( uint32_t ). + 2005-01-07 Ralf Corsepius * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V. diff --git a/cpukit/score/cpu/avr/rtems/score/cpu.h b/cpukit/score/cpu/avr/rtems/score/cpu.h index 69d7e91e8f..c3299e797c 100644 --- a/cpukit/score/cpu/avr/rtems/score/cpu.h +++ b/cpukit/score/cpu/avr/rtems/score/cpu.h @@ -1117,8 +1117,8 @@ void _CPU_Context_restore_fp( * XXX document implementation including references if appropriate */ -static inline unsigned int CPU_swap_u32( - unsigned int value +static inline uint32_t CPU_swap_u32( + uint32_t value ) { uint32_t byte1, byte2, byte3, byte4, swapped; diff --git a/cpukit/score/cpu/c4x/ChangeLog b/cpukit/score/cpu/c4x/ChangeLog index 1c5935fb05..e4638a8ad2 100644 --- a/cpukit/score/cpu/c4x/ChangeLog +++ b/cpukit/score/cpu/c4x/ChangeLog @@ -1,3 +1,7 @@ +2005-01-24 Ralf Corsepius + + * rtems/score/cpu.h: *_swap_u32( uint32_t ). + 2005-01-24 Ralf Corsepius * rtems/score/types.h: #include . diff --git a/cpukit/score/cpu/c4x/rtems/score/cpu.h b/cpukit/score/cpu/c4x/rtems/score/cpu.h index 76559a8c8a..f667b9234f 100644 --- a/cpukit/score/cpu/c4x/rtems/score/cpu.h +++ b/cpukit/score/cpu/c4x/rtems/score/cpu.h @@ -1236,8 +1236,8 @@ void _CPU_Context_restore_fp( * XXXanswer */ -static inline unsigned int CPU_swap_u32( - unsigned int value +static inline uint32_t CPU_swap_u32( + uint32_t value ) { uint32_t byte1, byte2, byte3, byte4, swapped; diff --git a/cpukit/score/cpu/mips/ChangeLog b/cpukit/score/cpu/mips/ChangeLog index 53eb526245..6f2eb628a4 100644 --- a/cpukit/score/cpu/mips/ChangeLog +++ b/cpukit/score/cpu/mips/ChangeLog @@ -1,3 +1,7 @@ +2005-01-24 Ralf Corsepius + + * rtems/score/cpu.h: *_swap_u32( uint32_t ). + 2005-01-24 Ralf Corsepius * rtems/score/types.h: #include . diff --git a/cpukit/score/cpu/mips/rtems/score/cpu.h b/cpukit/score/cpu/mips/rtems/score/cpu.h index b13648ef30..c8d8f1f728 100644 --- a/cpukit/score/cpu/mips/rtems/score/cpu.h +++ b/cpukit/score/cpu/mips/rtems/score/cpu.h @@ -1181,8 +1181,8 @@ void _CPU_Context_restore_fp( * will be fetched incorrectly. */ -static inline unsigned int CPU_swap_u32( - unsigned int value +static inline uint32_t CPU_swap_u32( + uint32_t value ) { uint32_t byte1, byte2, byte3, byte4, swapped; diff --git a/cpukit/score/cpu/no_cpu/ChangeLog b/cpukit/score/cpu/no_cpu/ChangeLog index cc7f5dff5a..2e114c247c 100644 --- a/cpukit/score/cpu/no_cpu/ChangeLog +++ b/cpukit/score/cpu/no_cpu/ChangeLog @@ -1,3 +1,7 @@ +2005-01-24 Ralf Corsepius + + * rtems/score/cpu.h: *_swap_u32( uint32_t ). + 2005-01-24 Ralf Corsepius * rtems/score/types.h: #include . diff --git a/cpukit/score/cpu/no_cpu/rtems/score/cpu.h b/cpukit/score/cpu/no_cpu/rtems/score/cpu.h index cd40e3fd6f..fa04cc55a0 100644 --- a/cpukit/score/cpu/no_cpu/rtems/score/cpu.h +++ b/cpukit/score/cpu/no_cpu/rtems/score/cpu.h @@ -1291,8 +1291,8 @@ void _CPU_Context_restore_fp( * * XXX document implementation including references if appropriate */ -static inline unsigned int CPU_swap_u32( - unsigned int value +static inline uint32_t CPU_swap_u32( + uint32_t value ) { uint32_t byte1, byte2, byte3, byte4, swapped; diff --git a/cpukit/score/cpu/or32/ChangeLog b/cpukit/score/cpu/or32/ChangeLog index 7e3eb3cff4..90b7dedd95 100644 --- a/cpukit/score/cpu/or32/ChangeLog +++ b/cpukit/score/cpu/or32/ChangeLog @@ -1,3 +1,7 @@ +2005-01-24 Ralf Corsepius + + * rtems/score/cpu.h: *_swap_u32( uint32_t ). + 2005-01-24 Ralf Corsepius * rtems/score/types.h: #include . diff --git a/cpukit/score/cpu/or32/rtems/score/cpu.h b/cpukit/score/cpu/or32/rtems/score/cpu.h index cf57f24c3d..175e76ca62 100644 --- a/cpukit/score/cpu/or32/rtems/score/cpu.h +++ b/cpukit/score/cpu/or32/rtems/score/cpu.h @@ -1045,8 +1045,8 @@ void _CPU_Context_restore_fp( * */ -static inline unsigned int CPU_swap_u32( - unsigned int value +static inline uint32_t CPU_swap_u32( + uint32_t value ) { uint32_t byte1, byte2, byte3, byte4, swapped; diff --git a/cpukit/score/cpu/sparc/ChangeLog b/cpukit/score/cpu/sparc/ChangeLog index 130850ec70..dd85a6df49 100644 --- a/cpukit/score/cpu/sparc/ChangeLog +++ b/cpukit/score/cpu/sparc/ChangeLog @@ -1,3 +1,7 @@ +2005-01-24 Ralf Corsepius + + * rtems/score/cpu.h: *_swap_u32( uint32_t ). + 2005-01-24 Ralf Corsepius * rtems/score/types.h: #include . diff --git a/cpukit/score/cpu/sparc/rtems/score/cpu.h b/cpukit/score/cpu/sparc/rtems/score/cpu.h index b7f1ea9840..383636c6f2 100644 --- a/cpukit/score/cpu/sparc/rtems/score/cpu.h +++ b/cpukit/score/cpu/sparc/rtems/score/cpu.h @@ -976,8 +976,8 @@ void _CPU_Context_restore_fp( * following code at optimization level four (i.e. -O4). */ -static inline unsigned int CPU_swap_u32( - unsigned int value +static inline uint32_t CPU_swap_u32( + uint32_t value ) { uint32_t byte1, byte2, byte3, byte4, swapped; diff --git a/cpukit/score/cpu/unix/ChangeLog b/cpukit/score/cpu/unix/ChangeLog index f922bcd9b0..bd36ab3b41 100644 --- a/cpukit/score/cpu/unix/ChangeLog +++ b/cpukit/score/cpu/unix/ChangeLog @@ -1,3 +1,7 @@ +2005-01-24 Ralf Corsepius + + * rtems/score/cpu.h: *_swap_u32( uint32_t ). + 2005-01-24 Ralf Corsepius * rtems/score/types.h: #include . diff --git a/cpukit/score/cpu/unix/rtems/score/cpu.h b/cpukit/score/cpu/unix/rtems/score/cpu.h index 37d4af4436..cabd2979ca 100644 --- a/cpukit/score/cpu/unix/rtems/score/cpu.h +++ b/cpukit/score/cpu/unix/rtems/score/cpu.h @@ -1015,8 +1015,8 @@ void _CPU_Fatal_error( * will be fetched incorrectly. */ -static inline unsigned int CPU_swap_u32( - unsigned int value +static inline uint32_t CPU_swap_u32( + uint32_t value ) { uint32_t byte1, byte2, byte3, byte4, swapped; -- cgit v1.2.3