summaryrefslogtreecommitdiffstats
path: root/doc/bsp_howto/ata.t
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-09 07:33:46 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-09 07:33:46 +0000
commite9233c57f6897dd95f904f459e337cfef278bd48 (patch)
tree431783507aa49b26d25accd62729fc910a12ebaf /doc/bsp_howto/ata.t
parent2008-09-09 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-e9233c57f6897dd95f904f459e337cfef278bd48.tar.bz2
Convert to "bool".
Diffstat (limited to 'doc/bsp_howto/ata.t')
-rw-r--r--doc/bsp_howto/ata.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/bsp_howto/ata.t b/doc/bsp_howto/ata.t
index c1c17fda3f..5843595fab 100644
--- a/doc/bsp_howto/ata.t
+++ b/doc/bsp_howto/ata.t
@@ -127,7 +127,7 @@ information about controller's queue and devices attached to the controller:
* controller and chain of ATA requests to the controller.
*/
typedef struct ata_ide_ctrl_s @{
- rtems_boolean present; /* controller state */
+ bool present; /* controller state */
ata_dev_t device[2]; /* ata devices description */
Chain_Control reqs; /* requests chain */
@} ata_ide_ctrl_t;