From 2a517327a657007f3dbada9998db483792df8ef9 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 21 Aug 2008 14:50:16 +0000 Subject: 2008-08-21 Joel Sherrill * bsp_howto/ata.t, bsp_howto/clock.t, bsp_howto/ide-ctrl.t, bsp_howto/nvmem.t, bsp_howto/shmsupp.t, user/datatypes.t, user/mp.t, user/userext.t: Eliminate all references to rtems_signedXX and rtems_unsignedXX. --- doc/bsp_howto/ata.t | 6 +++--- doc/bsp_howto/clock.t | 2 +- doc/bsp_howto/ide-ctrl.t | 24 ++++++++++++++---------- doc/bsp_howto/nvmem.t | 16 ++++++++-------- doc/bsp_howto/shmsupp.t | 6 +++--- 5 files changed, 29 insertions(+), 25 deletions(-) (limited to 'doc/bsp_howto') diff --git a/doc/bsp_howto/ata.t b/doc/bsp_howto/ata.t index 851a41ee3b..c1c17fda3f 100644 --- a/doc/bsp_howto/ata.t +++ b/doc/bsp_howto/ata.t @@ -101,9 +101,9 @@ typedef struct ata_req_s @{ Chain_Node link; /* link in requests chain */ char type; /* request type */ ata_registers_t regs; /* ATA command */ - rtems_unsigned32 cnt; /* Number of sectors to be exchanged */ - rtems_unsigned32 cbuf; /* number of current buffer from breq in use */ - rtems_unsigned32 pos; /* current position in 'cbuf' */ + uint32_t cnt; /* Number of sectors to be exchanged */ + uint32_t cbuf; /* number of current buffer from breq in use */ + uint32_t pos; /* current position in 'cbuf' */ blkdev_request *breq; /* blkdev_request which corresponds to the * ata request */ diff --git a/doc/bsp_howto/clock.t b/doc/bsp_howto/clock.t index 24a6812d4c..69b16e154b 100644 --- a/doc/bsp_howto/clock.t +++ b/doc/bsp_howto/clock.t @@ -47,7 +47,7 @@ routines that have occured. This information is valuable when debugging a system. This variable is declared as follows: @example -volatile rtems_unsigned32 Clock_driver_ticks; +volatile uint32_t Clock_driver_ticks; @end example @section Initialization diff --git a/doc/bsp_howto/ide-ctrl.t b/doc/bsp_howto/ide-ctrl.t index f5ece8507d..4a7697004e 100644 --- a/doc/bsp_howto/ide-ctrl.t +++ b/doc/bsp_howto/ide-ctrl.t @@ -113,11 +113,13 @@ overhead. This routine is not allowed to be called from an application. @example @group -void ide_controller_read_data_block(rtems_device_minor_number minor, - unsigned16 block_size, - blkdev_sg_buffer *bufs, - rtems_unsigned32 *cbuf, - rtems_unsigned32 *pos) +void ide_controller_read_data_block( + rtems_device_minor_number minor, + unsigned16 block_size, + blkdev_sg_buffer *bufs, + uint32_t *cbuf, + uint32_t *pos +) @{ get IDE Controller chip configuration information from IDE_Controller_Table by minor number @@ -138,11 +140,13 @@ overhead. This routine is not allowed to be called from an application. @example @group -void ide_controller_write_data_block(rtems_device_minor_number minor, - unsigned16 block_size, - blkdev_sg_buffer *bufs, - rtems_unsigned32 *cbuf, - rtems_unsigned32 *pos) +void ide_controller_write_data_block( + rtems_device_minor_number minor, + unsigned16 block_size, + blkdev_sg_buffer *bufs, + uint32_t *cbuf, + uint32_t *pos +) @{ get IDE Controller chip configuration information from IDE_Controller_Table by minor number diff --git a/doc/bsp_howto/nvmem.t b/doc/bsp_howto/nvmem.t index 2c1063b8c3..aca391409b 100644 --- a/doc/bsp_howto/nvmem.t +++ b/doc/bsp_howto/nvmem.t @@ -184,10 +184,10 @@ structure type: @example @group typedef struct @{ - rtems_unsigned32 offset; - void *buffer; - rtems_unsigned32 length; - rtems_unsigned32 status; + uint32_t offset; + void *buffer; + uint32_t length; + uint32_t status; @} Non_volatile_memory_Driver_arguments; @end group @end example @@ -211,10 +211,10 @@ the following structure type: @example @group typedef struct @{ - rtems_unsigned32 offset; - void *buffer; - rtems_unsigned32 length; - rtems_unsigned32 status; + uint32_t offset; + void *buffer; + uint32_t length; + uint32_t status; @} Non_volatile_memory_Driver_arguments; @end group @end example diff --git a/doc/bsp_howto/shmsupp.t b/doc/bsp_howto/shmsupp.t index 3c087ca6cd..885db4d5e6 100644 --- a/doc/bsp_howto/shmsupp.t +++ b/doc/bsp_howto/shmsupp.t @@ -27,7 +27,7 @@ structure: @example @group -typedef volatile rtems_unsigned32 vol_u32; +typedef volatile uint32_t vol_u32; typedef struct @{ vol_u32 *address; /* write here for interrupt */ @@ -41,7 +41,7 @@ struct shm_config_info @{ vol_u32 format; /* SHM is big or little endian */ vol_u32 (*convert)(); /* neutral conversion routine */ vol_u32 poll_intr; /* POLLED or INTR driven mode */ - void (*cause_intr)( rtems_unsigned32 ); + void (*cause_intr)( uint32_t ); Shm_Interrupt_information Intr; /* cause intr information */ @}; @@ -123,7 +123,7 @@ Shared Memory Configuration Table passed to it. @example @group void Shm_Get_configuration( - rtems_unsigned32 localnode, + uint32_t localnode, shm_config_table **shmcfg ) @{ -- cgit v1.2.3