2004-03-30 Ralf Corsepius <ralf_corsepius@rtems.org>

* clock/ckinit.c, clock/clock.h, mongoosev/duart/mg5uart.c,
	mongoosev/duart/mg5uart.h, mongoosev/duart/mg5uart_reg.c,
	mongoosev/include/mongoose-v.h, mongoosev/vectorisrs/vectorisrs.c,
	shared/interrupts/vectorexceptions.c, timer/timer.c,
	tx39/include/tx3904.h: Convert to using c99 fixed size types.
This commit is contained in:
Ralf Corsepius
2004-03-31 02:02:23 +00:00
parent e96a950bcf
commit 35f9701021
11 changed files with 90 additions and 82 deletions

View File

@@ -50,10 +50,10 @@
#define CLOCKS_PER_MICROSECOND ( CPU_CLOCK_RATE_MHZ )
#define TIMER_MAX_VALUE 0xffffffff
extern unsigned32 mips_read_timer( void );
extern uint32_t mips_read_timer( void );
static rtems_boolean Timer_driver_Find_average_overhead;
static unsigned32 Timer_initial_value = 0;
static uint32_t Timer_initial_value = 0;
void Timer_initialize( void )
{
@@ -82,8 +82,8 @@ void Timer_initialize( void )
int Read_timer( void )
{
unsigned64 clicks;
unsigned32 total;
uint64_t clicks;
uint32_t total;
/*
* Read the timer and see how many clicks it has been since we started.