diff options
author | Ivo van Doorn <ivdoorn@gmail.com> | 2007-10-13 10:26:42 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 18:02:54 -0500 |
commit | ddc827f93a2f2a7dcfda5b691d046af4dfe76427 (patch) | |
tree | dfa0c0d573e18fcc95d15984d43dcff4a7d71564 /drivers/net/wireless/rt2x00/rt2x00.h | |
parent | 69f81a2cac860cf183eb9ef7787525c3552d4612 (diff) |
[PATCH] rt2x00: Cleanup if-statements
Cleanup if-statements for simple 1/0 register field values.
This also fixes a endian bug in rt2500usb when working
with the PHY_CSR2 initialization. As well as a bug
in the enabling of the LED in rt73usb.
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/wireless/rt2x00/rt2x00.h')
-rw-r--r-- | drivers/net/wireless/rt2x00/rt2x00.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2x00.h b/drivers/net/wireless/rt2x00/rt2x00.h index e7533e2ccd2e..4054e5460634 100644 --- a/drivers/net/wireless/rt2x00/rt2x00.h +++ b/drivers/net/wireless/rt2x00/rt2x00.h | |||
@@ -133,20 +133,20 @@ | |||
133 | */ | 133 | */ |
134 | static inline int is_rts_frame(u16 fc) | 134 | static inline int is_rts_frame(u16 fc) |
135 | { | 135 | { |
136 | return !!(((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_CTL) && | 136 | return (((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_CTL) && |
137 | ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_RTS)); | 137 | ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_RTS)); |
138 | } | 138 | } |
139 | 139 | ||
140 | static inline int is_cts_frame(u16 fc) | 140 | static inline int is_cts_frame(u16 fc) |
141 | { | 141 | { |
142 | return !!(((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_CTL) && | 142 | return (((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_CTL) && |
143 | ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_CTS)); | 143 | ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_CTS)); |
144 | } | 144 | } |
145 | 145 | ||
146 | static inline int is_probe_resp(u16 fc) | 146 | static inline int is_probe_resp(u16 fc) |
147 | { | 147 | { |
148 | return !!(((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT) && | 148 | return (((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT) && |
149 | ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_PROBE_RESP)); | 149 | ((fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_PROBE_RESP)); |
150 | } | 150 | } |
151 | 151 | ||
152 | /* | 152 | /* |