From e96a950bcf9953c0c0474fb21ec2af9c260e3668 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Wed, 31 Mar 2004 02:00:03 +0000 Subject: 2004-03-30 Ralf Corsepius * 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. --- c/src/lib/libcpu/sh/sh7045/sci/sci.c | 18 +++++++++--------- c/src/lib/libcpu/sh/sh7045/sci/sci_termios.c | 12 ++++++------ 2 files changed, 15 insertions(+), 15 deletions(-) (limited to 'c/src/lib/libcpu/sh/sh7045/sci') diff --git a/c/src/lib/libcpu/sh/sh7045/sci/sci.c b/c/src/lib/libcpu/sh/sh7045/sci/sci.c index 7b1d607390..ff8c935c00 100644 --- a/c/src/lib/libcpu/sh/sh7045/sci/sci.c +++ b/c/src/lib/libcpu/sh/sh7045/sci/sci.c @@ -78,7 +78,7 @@ struct scidev_t { char * name ; - unsigned32 addr ; + uint32_t addr ; rtems_device_minor_number minor ; unsigned short opened ; tcflag_t cflags ; @@ -104,8 +104,8 @@ static int _sci_set_cflags( struct scidev_t *sci_dev, tcflag_t c_cflag ) { - unsigned8 smr ; - unsigned8 brr ; + uint8_t smr ; + uint8_t brr ; if ( c_cflag & CBAUD ) { @@ -150,7 +150,7 @@ static int _sci_set_cflags( */ rtems_boolean wrtSCI0(unsigned char ch) { - unsigned8 temp; + uint8_t temp; rtems_boolean result=FALSE; if ((read8(SCI_SSR0) & SCI_TDRE) != 0x00) { @@ -166,7 +166,7 @@ rtems_boolean wrtSCI0(unsigned char ch) rtems_boolean wrtSCI1(unsigned char ch) { - unsigned8 temp; + uint8_t temp; rtems_boolean result=FALSE; if ((read8(SCI_SSR1) & SCI_TDRE) != 0x00) { @@ -203,7 +203,7 @@ void outbyte( rtems_boolean rdSCI0(unsigned char *ch) { - unsigned8 temp; + uint8_t temp; rtems_boolean result=FALSE; if ((read8(SCI_SSR0) & SCI_RDRF) != 0x00) { @@ -227,7 +227,7 @@ rtems_boolean rdSCI0(unsigned char *ch) rtems_boolean rdSCI1(unsigned char *ch) { - unsigned8 temp; + uint8_t temp; rtems_boolean result=FALSE; if ((read8(SCI_SSR1) & SCI_RDRF) != 0x00) { @@ -339,8 +339,8 @@ rtems_device_driver sh_sci_open( rtems_device_minor_number minor, void * arg ) { - unsigned8 temp8; - unsigned16 temp16; + uint8_t temp8; + uint16_t temp16; unsigned a ; diff --git a/c/src/lib/libcpu/sh/sh7045/sci/sci_termios.c b/c/src/lib/libcpu/sh/sh7045/sci/sci_termios.c index 81689633b0..f2d370e9be 100644 --- a/c/src/lib/libcpu/sh/sh7045/sci/sci_termios.c +++ b/c/src/lib/libcpu/sh/sh7045/sci/sci_termios.c @@ -71,8 +71,8 @@ int sh_sci_set_attributes( const struct termios *t ) { - unsigned8 smr ; - unsigned8 brr ; + uint8_t smr ; + uint8_t brr ; int a; tcflag_t c_cflag = t->c_cflag; @@ -135,7 +135,7 @@ rtems_isr sh_sci_rx_isr(rtems_vector_number vector) { if(Console_Port_Tbl[minor].ulIntVector == vector) { - unsigned8 temp8; + uint8_t temp8; /* * FIXME: error handling should be added @@ -193,7 +193,7 @@ rtems_isr sh_sci_tx_isr(rtems_vector_number vector) */ void sh_sci_init(int minor) { - unsigned16 temp16; + uint16_t temp16; /* * set PFC registers to enable I/O pins @@ -285,7 +285,7 @@ int sh_sci_first_open( int minor, void *arg ) { - unsigned8 temp8; + uint8_t temp8; unsigned int a ; /* @@ -439,7 +439,7 @@ void sh_sci_write_polled( */ int sh_sci_inbyte_nonblocking_polled(int minor) { - unsigned8 inbyte; + uint8_t inbyte; /* * Check if input buffer is full -- cgit v1.2.3