aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/ath6kl/reorder/aggr_rx_internal.h
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2011-02-02 17:05:47 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2011-02-02 17:34:49 -0500
commit1071a134d0822663f497a1dda4866cffa7df4e36 (patch)
tree8a533bd3f4f9b7571a089825b5c9bb7ee020d8fd /drivers/staging/ath6kl/reorder/aggr_rx_internal.h
parent949c3676cd6b2717c2abda5d9b10e6d6d7daf741 (diff)
staging: ath6kl: Remove A_BOOL and TRUE/FALSE
Use kernel bool and true/false. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/ath6kl/reorder/aggr_rx_internal.h')
-rw-r--r--drivers/staging/ath6kl/reorder/aggr_rx_internal.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/ath6kl/reorder/aggr_rx_internal.h b/drivers/staging/ath6kl/reorder/aggr_rx_internal.h
index 5dbf8f86f71..5f9bf9b4dc9 100644
--- a/drivers/staging/ath6kl/reorder/aggr_rx_internal.h
+++ b/drivers/staging/ath6kl/reorder/aggr_rx_internal.h
@@ -61,7 +61,7 @@ typedef enum {
61 61
62typedef struct { 62typedef struct {
63 void *osbuf; 63 void *osbuf;
64 A_BOOL is_amsdu; 64 bool is_amsdu;
65 A_UINT16 seq_no; 65 A_UINT16 seq_no;
66}OSBUF_HOLD_Q; 66}OSBUF_HOLD_Q;
67 67
@@ -74,9 +74,9 @@ typedef struct {
74#endif 74#endif
75 75
76typedef struct { 76typedef struct {
77 A_BOOL aggr; /* is it ON or OFF */ 77 bool aggr; /* is it ON or OFF */
78 A_BOOL progress; /* TRUE when frames have arrived after a timer start */ 78 bool progress; /* true when frames have arrived after a timer start */
79 A_BOOL timerMon; /* TRUE if the timer started for the sake of this TID */ 79 bool timerMon; /* true if the timer started for the sake of this TID */
80 A_UINT16 win_sz; /* negotiated window size */ 80 A_UINT16 win_sz; /* negotiated window size */
81 A_UINT16 seq_next; /* Next seq no, in current window */ 81 A_UINT16 seq_next; /* Next seq no, in current window */
82 A_UINT32 hold_q_sz; /* Num of frames that can be held in hold q */ 82 A_UINT32 hold_q_sz; /* Num of frames that can be held in hold q */