summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/i386/pc386/ne2000
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-02 13:49:37 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-02 13:49:37 +0000
commit78b05d33eafb430c6c814ee25cd384cc103bef79 (patch)
tree10e0208c3a7d2e87d0b010270b9972be9e27976a /c/src/lib/libbsp/i386/pc386/ne2000
parent2008-09-02 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-78b05d33eafb430c6c814ee25cd384cc103bef79.tar.bz2
Eliminate rtems_boolean.
Diffstat (limited to 'c/src/lib/libbsp/i386/pc386/ne2000')
-rw-r--r--c/src/lib/libbsp/i386/pc386/ne2000/ne2000.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/c/src/lib/libbsp/i386/pc386/ne2000/ne2000.c b/c/src/lib/libbsp/i386/pc386/ne2000/ne2000.c
index bf6ca8469f..2c5484cd01 100644
--- a/c/src/lib/libbsp/i386/pc386/ne2000/ne2000.c
+++ b/c/src/lib/libbsp/i386/pc386/ne2000/ne2000.c
@@ -141,7 +141,7 @@ struct ne_softc {
rtems_id rx_daemon_tid;
/* Whether we use byte-transfers with the device. */
- rtems_boolean byte_transfers;
+ bool byte_transfers;
/* The number of memory buffers which the transmit daemon has loaded
with data to be sent, but which have not yet been completely
@@ -1174,9 +1174,9 @@ rtems_ne_driver_attach (struct rtems_bsdnet_ifconfig *config, int attach)
/* Check whether we do byte-wide or word-wide transfers. */
#ifdef NE2000_BYTE_TRANSFERS
- sc->byte_transfers = TRUE;
+ sc->byte_transfers = true;
#else
- sc->byte_transfers = FALSE;
+ sc->byte_transfers = false;
#endif
/* Handle the options passed in by the caller. */