summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu/sh/sh7045/clock/ckinit.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-03-31 02:00:03 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-03-31 02:00:03 +0000
commite96a950bcf9953c0c0474fb21ec2af9c260e3668 (patch)
tree7084fab854fb4d785bff1d539f3ea24154e32b94 /c/src/lib/libcpu/sh/sh7045/clock/ckinit.c
parent2004-03-30 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-e96a950bcf9953c0c0474fb21ec2af9c260e3668.tar.bz2
2004-03-30 Ralf Corsepius <ralf_corsepius@rtems.org>
* sh7032/clock/ckinit.c, sh7032/delay/delay.c, sh7032/include/ispsh7032.h, sh7032/sci/sci.c, sh7032/score/cpu_asm.c, sh7032/timer/timer.c, sh7045/clock/ckinit.c, sh7045/include/ispsh7045.h, sh7045/sci/sci.c, sh7045/sci/sci_termios.c, sh7045/score/cpu_asm.c, sh7045/timer/timer.c, sh7750/clock/ckinit.c, sh7750/include/rtems/score/ispsh7750.h, sh7750/include/sh/sh4uart.h, sh7750/sci/sh4uart.c, sh7750/score/cpu_asm.c, sh7750/score/ispsh7750.c, sh7750/timer/timer.c: Convert to using c99 fixed size types.
Diffstat (limited to 'c/src/lib/libcpu/sh/sh7045/clock/ckinit.c')
-rw-r--r--c/src/lib/libcpu/sh/sh7045/clock/ckinit.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/c/src/lib/libcpu/sh/sh7045/clock/ckinit.c b/c/src/lib/libcpu/sh/sh7045/clock/ckinit.c
index 2cde8e414e..c8fdb4b5a6 100644
--- a/c/src/lib/libcpu/sh/sh7045/clock/ckinit.c
+++ b/c/src/lib/libcpu/sh/sh7045/clock/ckinit.c
@@ -71,11 +71,11 @@
* number of clock ticks since the driver was initialized.
*/
-volatile rtems_unsigned32 Clock_driver_ticks;
+volatile uint32_t Clock_driver_ticks;
static void Clock_exit( void );
static rtems_isr Clock_isr( rtems_vector_number vector );
-static rtems_unsigned32 Clock_MHZ ;
+static uint32_t Clock_MHZ ;
/*
* Clock_isrs is the number of clock ISRs until the next invocation of
@@ -85,8 +85,8 @@ static rtems_unsigned32 Clock_MHZ ;
* has passed.
*/
-rtems_unsigned32 Clock_isrs; /* ISRs until next tick */
-static rtems_unsigned32 Clock_isrs_const; /* only calculated once */
+uint32_t Clock_isrs; /* ISRs until next tick */
+static uint32_t Clock_isrs_const; /* only calculated once */
/*
* These are set by clock driver during its init
@@ -118,7 +118,7 @@ rtems_isr Clock_isr(
*
* perform any timer dependent tasks
*/
- unsigned8 temp;
+ uint8_t temp;
/* reset the flags of the status register */
temp = read8( MTU_TSR0) & MTU0_STAT_MASK;
@@ -148,8 +148,8 @@ void Install_clock(
rtems_isr_entry clock_isr
)
{
- unsigned8 temp8 = 0;
- unsigned32 factor = 1000000;
+ uint8_t temp8 = 0;
+ uint32_t factor = 1000000;
/*
@@ -222,7 +222,7 @@ void Install_clock(
void Clock_exit( void )
{
- unsigned8 temp8 = 0;
+ uint8_t temp8 = 0;
/* turn off the timer interrupts */
/* set interrupt priority to 0 */
@@ -271,7 +271,7 @@ rtems_device_driver Clock_control(
void *pargp
)
{
- rtems_unsigned32 isrlevel;
+ uint32_t isrlevel;
rtems_libio_ioctl_args_t *args = pargp;
if (args != 0)