mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-05 15:15:44 +00:00
2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org>
* console/console.c, include/bsp.h, irq/irq.c, network/network.c, startup/bspstart.c: Convert to using c99 fixed size types.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org>
|
||||
|
||||
* console/console.c, include/bsp.h, irq/irq.c, network/network.c,
|
||||
startup/bspstart.c: Convert to using c99 fixed size types.
|
||||
|
||||
2004-03-03 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* irq/irq.h: Correct typo.
|
||||
|
||||
@@ -139,7 +139,7 @@ static rtems_status_code do_poll_read(
|
||||
#define BSP_READ m8xx_uart_pollRead
|
||||
|
||||
while( (c = BSP_READ(minor)) == -1 );
|
||||
rw_args->buffer[0] = (unsigned8)c;
|
||||
rw_args->buffer[0] = (uint8_t)c;
|
||||
if( rw_args->buffer[0] == '\r' )
|
||||
rw_args->buffer[0] = '\n';
|
||||
rw_args->bytes_moved = 1;
|
||||
@@ -175,7 +175,7 @@ static rtems_status_code do_poll_write(
|
||||
)
|
||||
{
|
||||
rtems_libio_rw_args_t *rw_args = arg;
|
||||
unsigned32 i;
|
||||
uint32_t i;
|
||||
char cr ='\r';
|
||||
|
||||
#define BSP_WRITE m8xx_uart_pollWrite
|
||||
|
||||
@@ -39,10 +39,10 @@ extern "C" {
|
||||
typedef struct bcsr
|
||||
|
||||
{
|
||||
rtems_unsigned32 bcsr0; /* Board Control and Status Register */
|
||||
rtems_unsigned32 bcsr1;
|
||||
rtems_unsigned32 bcsr2;
|
||||
rtems_unsigned32 bcsr3;
|
||||
uint32_t bcsr0; /* Board Control and Status Register */
|
||||
uint32_t bcsr1;
|
||||
uint32_t bcsr2;
|
||||
uint32_t bcsr3;
|
||||
|
||||
} BCSR;
|
||||
|
||||
@@ -139,7 +139,7 @@ extern rtems_configuration_table BSP_Configuration;
|
||||
void bsp_cleanup( void );
|
||||
|
||||
#if 0
|
||||
void M8260ExecuteRISC( rtems_unsigned32 command );
|
||||
void M8260ExecuteRISC( uint32_t command );
|
||||
void *M8260AllocateBufferDescriptors( int count );
|
||||
void *M8260AllocateRiscTimers( int count );
|
||||
extern char M8260DefaultWatchdogFeeder;
|
||||
|
||||
@@ -60,10 +60,10 @@ static inline int is_processor_irq(const rtems_irq_symbolic_name irqLine)
|
||||
}
|
||||
|
||||
typedef struct {
|
||||
rtems_unsigned32 mask_h; /* mask for sipnr_h and simr_h */
|
||||
rtems_unsigned32 mask_l; /* mask for sipnr_l and simr_l */
|
||||
rtems_unsigned32 priority_h; /* mask this and lower priority ints */
|
||||
rtems_unsigned32 priority_l;
|
||||
uint32_t mask_h; /* mask for sipnr_h and simr_h */
|
||||
uint32_t mask_l; /* mask for sipnr_l and simr_l */
|
||||
uint32_t priority_h; /* mask this and lower priority ints */
|
||||
uint32_t priority_l;
|
||||
} m82xxIrqMasks_t;
|
||||
|
||||
/*
|
||||
|
||||
@@ -390,7 +390,7 @@ m8260_scc_initialize_hardware (struct m8260_hdlc_struct *sc)
|
||||
static void
|
||||
m8260Enet_retire_tx_bd (struct m8260_hdlc_struct *sc)
|
||||
{
|
||||
rtems_unsigned16 status;
|
||||
uint16_t status;
|
||||
int i;
|
||||
int nRetired;
|
||||
struct mbuf *m, *n;
|
||||
@@ -448,7 +448,7 @@ scc_rxDaemon (void *arg)
|
||||
struct m8260_hdlc_struct *sc = (struct m8260_hdlc_struct *)arg;
|
||||
struct ifnet *ifp = &sc->ac_if;
|
||||
struct mbuf *m;
|
||||
rtems_unsigned16 status;
|
||||
uint16_t status;
|
||||
m8260BufferDescriptor_t *rxBd;
|
||||
int rxBdIndex;
|
||||
|
||||
@@ -541,7 +541,7 @@ scc_rxDaemon (void *arg)
|
||||
m = sc->rxMbuf[rxBdIndex];
|
||||
|
||||
/* strip off HDLC CRC */
|
||||
m->m_len = m->m_pkthdr.len = rxBd->length - sizeof(rtems_unsigned16);
|
||||
m->m_len = m->m_pkthdr.len = rxBd->length - sizeof(uint16_t);
|
||||
|
||||
hdlc_input( ifp, m );
|
||||
|
||||
@@ -599,7 +599,7 @@ scc_sendpacket (struct ifnet *ifp, struct mbuf *m)
|
||||
struct m8260_hdlc_struct *sc = ifp->if_softc;
|
||||
volatile m8260BufferDescriptor_t *firstTxBd, *txBd;
|
||||
struct mbuf *l = NULL;
|
||||
rtems_unsigned16 status;
|
||||
uint16_t status;
|
||||
int nAdded;
|
||||
|
||||
/*
|
||||
|
||||
@@ -80,7 +80,7 @@ char *rtems_progname;
|
||||
* rtems/c/src/lib/libbsp/shared/bsplibc.c.
|
||||
*/
|
||||
void bsp_postdriver_hook(void);
|
||||
void bsp_libc_init( void *, unsigned32, int );
|
||||
void bsp_libc_init( void *, uint32_t, int );
|
||||
|
||||
void _BSP_GPLED1_on(void);
|
||||
void _BSP_GPLED0_on(void);
|
||||
@@ -328,7 +328,7 @@ void bsp_start(void)
|
||||
|
||||
/* use BRG1 to generate 32kHz timebase */
|
||||
/*
|
||||
m8260.brgc1 = M8260_BRG_EN + (unsigned32)(((unsigned16)((40016384)/(32768)) - 1) << 1) + 0;
|
||||
m8260.brgc1 = M8260_BRG_EN + (uint32_t)(((uint16_t)((40016384)/(32768)) - 1) << 1) + 0;
|
||||
*/
|
||||
|
||||
|
||||
@@ -363,7 +363,7 @@ void bsp_start(void)
|
||||
*
|
||||
*/
|
||||
Thread _Thread_Idle_body(
|
||||
unsigned32 ignored )
|
||||
uint32_t ignored )
|
||||
{
|
||||
|
||||
for( ; ; )
|
||||
|
||||
Reference in New Issue
Block a user