summaryrefslogtreecommitdiffstats
path: root/doc/bsp_howto
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-08-21 14:50:16 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-08-21 14:50:16 +0000
commit2a517327a657007f3dbada9998db483792df8ef9 (patch)
tree87cf29eacbdd28523aed6a061492ab8c561251d7 /doc/bsp_howto
parent2008-08-21 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-2a517327a657007f3dbada9998db483792df8ef9.tar.bz2
2008-08-21 Joel Sherrill <joel.sherrill@OARcorp.com>
* 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.
Diffstat (limited to 'doc/bsp_howto')
-rw-r--r--doc/bsp_howto/ata.t6
-rw-r--r--doc/bsp_howto/clock.t2
-rw-r--r--doc/bsp_howto/ide-ctrl.t24
-rw-r--r--doc/bsp_howto/nvmem.t16
-rw-r--r--doc/bsp_howto/shmsupp.t6
5 files changed, 29 insertions, 25 deletions
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
)
@{