summaryrefslogtreecommitdiffstats
path: root/doc/bsp_howto
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
parent2008-09-09 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-e9233c57f6897dd95f904f459e337cfef278bd48.tar.bz2
Convert to "bool".
Diffstat (limited to 'doc/bsp_howto')
-rw-r--r--doc/bsp_howto/ata.t2
-rw-r--r--doc/bsp_howto/rtc.t4
2 files changed, 3 insertions, 3 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;
diff --git a/doc/bsp_howto/rtc.t b/doc/bsp_howto/rtc.t
index a5844e3d67..7cb19f4ee3 100644
--- a/doc/bsp_howto/rtc.t
+++ b/doc/bsp_howto/rtc.t
@@ -46,7 +46,7 @@ the DMV177's @code{RTC_Table} configuration table is below:
#include <libchip/rtc.h>
#include <libchip/icm7170.h>
-boolean dmv177_icm7170_probe(int minor);
+bool dmv177_icm7170_probe(int minor);
rtc_tbl RTC_Table[] = @{
@{ "/dev/rtc0", /* sDeviceName */
@@ -64,7 +64,7 @@ rtc_tbl RTC_Table[] = @{
unsigned long RTC_Count = (sizeof(RTC_Table)/sizeof(rtc_tbl));
rtems_device_minor_number RTC_Minor;
-boolean dmv177_icm7170_probe(int minor)
+bool dmv177_icm7170_probe(int minor)
@{
volatile unsigned16 *card_resource_reg;