summaryrefslogtreecommitdiffstats
path: root/cpukit/libi2c/libi2c.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-04 14:20:51 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-04 14:20:51 +0000
commitf002800eafeeaa5a66f32ca13c2c50fe90660b93 (patch)
tree5827aa41013763f291880c0e29b779ed936d7070 /cpukit/libi2c/libi2c.h
parent2008-09-04 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-f002800eafeeaa5a66f32ca13c2c50fe90660b93.tar.bz2
Use bool instead of boolean.
Diffstat (limited to 'cpukit/libi2c/libi2c.h')
-rw-r--r--cpukit/libi2c/libi2c.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/libi2c/libi2c.h b/cpukit/libi2c/libi2c.h
index fc1c57e423..8e52ec3e3e 100644
--- a/cpukit/libi2c/libi2c.h
+++ b/cpukit/libi2c/libi2c.h
@@ -437,10 +437,10 @@ typedef struct {
uint32_t baudrate; /* maximum bits per second */
/* only valid for SPI drivers: */
uint8_t bits_per_char; /* how many bits per byte/word/longword? */
- boolean lsb_first; /* TRUE: send LSB first */
- boolean clock_inv; /* TRUE: inverted clock (high active) */
- boolean clock_phs; /* TRUE: clock starts toggling at start of data tfr */
- uint32_t idle_char; /* This character will be continuously transmitted in read only functions */
+ bool lsb_first; /* true: send LSB first */
+ bool clock_inv; /* true: inverted clock (high active) */
+ bool clock_phs; /* true: clock starts toggling at start of data tfr */
+ uint32_t idle_char; /* This character will be continuously transmitted in read only functions */
} rtems_libi2c_tfr_mode_t;
typedef struct {