diff options
author | Richard Knutsson <ricknu-0@student.ltu.se> | 2007-02-12 03:52:33 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-12 12:48:30 -0500 |
commit | e13df2c58f8e8c72278b61e8f59de9a1403f9426 (patch) | |
tree | 5a4ae3fd3011d1fe56a511dbe1368c1660eebf6d /drivers/telephony/ixj.h | |
parent | 40565f1962c5be9b9e285e05af01ab7771534868 (diff) |
[PATCH] drivers/telephony/ixj: Convert to generic boolean
Convert:
BOOL -> bool
FALSE -> false
TRUE -> true
Change a variable ('mContinue') to boolean from char, since it is used
as boolean.
Signed-off-by: Richard Knutsson <ricknu-0@student.ltu.se>
Acked-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/telephony/ixj.h')
-rw-r--r-- | drivers/telephony/ixj.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/telephony/ixj.h b/drivers/telephony/ixj.h index 8d69bcdc29c9..4c32a43b7914 100644 --- a/drivers/telephony/ixj.h +++ b/drivers/telephony/ixj.h | |||
@@ -48,15 +48,11 @@ | |||
48 | typedef __u16 WORD; | 48 | typedef __u16 WORD; |
49 | typedef __u32 DWORD; | 49 | typedef __u32 DWORD; |
50 | typedef __u8 BYTE; | 50 | typedef __u8 BYTE; |
51 | typedef __u8 BOOL; | ||
52 | 51 | ||
53 | #ifndef IXJMAX | 52 | #ifndef IXJMAX |
54 | #define IXJMAX 16 | 53 | #define IXJMAX 16 |
55 | #endif | 54 | #endif |
56 | 55 | ||
57 | #define TRUE 1 | ||
58 | #define FALSE 0 | ||
59 | |||
60 | /****************************************************************************** | 56 | /****************************************************************************** |
61 | * | 57 | * |
62 | * This structure when unioned with the structures below makes simple byte | 58 | * This structure when unioned with the structures below makes simple byte |