diff options
author | YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> | 2007-02-09 09:24:46 -0500 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-02-11 02:19:36 -0500 |
commit | 642656518b2e64fd59d9bbd15b6885cac5fe99b1 (patch) | |
tree | c52aec4941ba4ef5996675fd738bcb39ef438f84 /net/ieee80211/softmac/ieee80211softmac_priv.h | |
parent | 03d52d7cfcc7dec2b251f5b02c0638f952ff5d65 (diff) |
[NET] IEEE80211: Fix whitespace errors.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ieee80211/softmac/ieee80211softmac_priv.h')
-rw-r--r-- | net/ieee80211/softmac/ieee80211softmac_priv.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/net/ieee80211/softmac/ieee80211softmac_priv.h b/net/ieee80211/softmac/ieee80211softmac_priv.h index 4c2bba34d328..c43b189634df 100644 --- a/net/ieee80211/softmac/ieee80211softmac_priv.h +++ b/net/ieee80211/softmac/ieee80211softmac_priv.h | |||
@@ -130,7 +130,7 @@ static inline u8 get_fallback_rate(struct ieee80211softmac_device *mac, u8 rate) | |||
130 | { | 130 | { |
131 | return ieee80211softmac_lower_rate_delta(mac, rate, 2); | 131 | return ieee80211softmac_lower_rate_delta(mac, rate, 2); |
132 | } | 132 | } |
133 | 133 | ||
134 | 134 | ||
135 | /*** prototypes from _io.c */ | 135 | /*** prototypes from _io.c */ |
136 | int ieee80211softmac_send_mgt_frame(struct ieee80211softmac_device *mac, | 136 | int ieee80211softmac_send_mgt_frame(struct ieee80211softmac_device *mac, |
@@ -156,7 +156,7 @@ int ieee80211softmac_handle_assoc_response(struct net_device * dev, | |||
156 | int ieee80211softmac_handle_disassoc(struct net_device * dev, | 156 | int ieee80211softmac_handle_disassoc(struct net_device * dev, |
157 | struct ieee80211_disassoc * disassoc); | 157 | struct ieee80211_disassoc * disassoc); |
158 | int ieee80211softmac_handle_reassoc_req(struct net_device * dev, | 158 | int ieee80211softmac_handle_reassoc_req(struct net_device * dev, |
159 | struct ieee80211_reassoc_request * reassoc); | 159 | struct ieee80211_reassoc_request * reassoc); |
160 | void ieee80211softmac_assoc_timeout(struct work_struct *work); | 160 | void ieee80211softmac_assoc_timeout(struct work_struct *work); |
161 | void ieee80211softmac_send_disassoc_req(struct ieee80211softmac_device *mac, u16 reason); | 161 | void ieee80211softmac_send_disassoc_req(struct ieee80211softmac_device *mac, u16 reason); |
162 | void ieee80211softmac_disassoc(struct ieee80211softmac_device *mac); | 162 | void ieee80211softmac_disassoc(struct ieee80211softmac_device *mac); |
@@ -164,15 +164,15 @@ void ieee80211softmac_disassoc(struct ieee80211softmac_device *mac); | |||
164 | /* some helper functions */ | 164 | /* some helper functions */ |
165 | static inline int ieee80211softmac_scan_handlers_check_self(struct ieee80211softmac_device *sm) | 165 | static inline int ieee80211softmac_scan_handlers_check_self(struct ieee80211softmac_device *sm) |
166 | { | 166 | { |
167 | return (sm->start_scan == ieee80211softmac_start_scan_implementation) && | 167 | return (sm->start_scan == ieee80211softmac_start_scan_implementation) && |
168 | (sm->stop_scan == ieee80211softmac_stop_scan_implementation) && | 168 | (sm->stop_scan == ieee80211softmac_stop_scan_implementation) && |
169 | (sm->wait_for_scan == ieee80211softmac_wait_for_scan_implementation); | 169 | (sm->wait_for_scan == ieee80211softmac_wait_for_scan_implementation); |
170 | } | 170 | } |
171 | 171 | ||
172 | static inline int ieee80211softmac_scan_sanity_check(struct ieee80211softmac_device *sm) | 172 | static inline int ieee80211softmac_scan_sanity_check(struct ieee80211softmac_device *sm) |
173 | { | 173 | { |
174 | return ((sm->start_scan != ieee80211softmac_start_scan_implementation) && | 174 | return ((sm->start_scan != ieee80211softmac_start_scan_implementation) && |
175 | (sm->stop_scan != ieee80211softmac_stop_scan_implementation) && | 175 | (sm->stop_scan != ieee80211softmac_stop_scan_implementation) && |
176 | (sm->wait_for_scan != ieee80211softmac_wait_for_scan_implementation) | 176 | (sm->wait_for_scan != ieee80211softmac_wait_for_scan_implementation) |
177 | ) || ieee80211softmac_scan_handlers_check_self(sm); | 177 | ) || ieee80211softmac_scan_handlers_check_self(sm); |
178 | } | 178 | } |