summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/c4x/c4xio.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/cpu/c4x/c4xio.h')
-rw-r--r--cpukit/score/cpu/c4x/c4xio.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/score/cpu/c4x/c4xio.h b/cpukit/score/cpu/c4x/c4xio.h
index f85f461ebc..d398211dfb 100644
--- a/cpukit/score/cpu/c4x/c4xio.h
+++ b/cpukit/score/cpu/c4x/c4xio.h
@@ -90,15 +90,15 @@ struct c4x_timer {
#else
-static inline unsigned32 c3x_get_iof( void )
+static inline uint32_t c3x_get_iof( void )
{
- register unsigned32 iof_value;
+ register uint32_t iof_value;
__asm__ volatile ("ldi iof, %0" : "=r" (iof_value));
return iof_value;
}
-static inline void c3x_set_iof( unsigned32 value )
+static inline void c3x_set_iof( uint32_t value )
{
__asm__ volatile ("ldi %0,iof" : : "g" (value) : "iof", "cc");
}