summaryrefslogtreecommitdiffstats
path: root/doc/bsp_howto/ata.t
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/ata.t
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/ata.t')
-rw-r--r--doc/bsp_howto/ata.t6
1 files changed, 3 insertions, 3 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
*/