summaryrefslogtreecommitdiffstats
path: root/doc/bsp_howto/ide-ctrl.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/ide-ctrl.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/ide-ctrl.t')
-rw-r--r--doc/bsp_howto/ide-ctrl.t24
1 files changed, 14 insertions, 10 deletions
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