aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Berg <johannes@sipsolutions.net>2007-08-28 17:01:55 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2007-10-10 19:48:55 -0400
commit3c3b00caf98e5fdaa0184026a68f0008a5bf393e (patch)
tree45515fb3e3c46db8958fe7f97af30ed465dadfd1
parentb63bde7bb75f74acf974f43dc2be8798be115007 (diff)
[MAC80211]: clean up whitespace
This cleans up some whitespace to make the mac80211 version in mainline diverge less from wireless-dev. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Acked-by: Michael Wu <flamingice@sourmilk.net> Signed-off-by: John W. Linville <linville@tuxdriver.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--net/mac80211/ieee80211_ioctl.c1
-rw-r--r--net/mac80211/ieee80211_sta.c1
-rw-r--r--net/mac80211/wme.c7
-rw-r--r--net/mac80211/wpa.c1
4 files changed, 4 insertions, 6 deletions
diff --git a/net/mac80211/ieee80211_ioctl.c b/net/mac80211/ieee80211_ioctl.c
index d48f3aa30e3..383ad5f64c1 100644
--- a/net/mac80211/ieee80211_ioctl.c
+++ b/net/mac80211/ieee80211_ioctl.c
@@ -968,6 +968,7 @@ static int ieee80211_ioctl_get_prism2_param(struct net_device *dev,
968 *param = !!(sdata->u.sta.flags & 968 *param = !!(sdata->u.sta.flags &
969 IEEE80211_STA_MIXED_CELL); 969 IEEE80211_STA_MIXED_CELL);
970 break; 970 break;
971
971 case PRISM2_PARAM_WMM_ENABLED: 972 case PRISM2_PARAM_WMM_ENABLED:
972 if (sdata->type != IEEE80211_IF_TYPE_STA && 973 if (sdata->type != IEEE80211_IF_TYPE_STA &&
973 sdata->type != IEEE80211_IF_TYPE_IBSS) 974 sdata->type != IEEE80211_IF_TYPE_IBSS)
diff --git a/net/mac80211/ieee80211_sta.c b/net/mac80211/ieee80211_sta.c
index a2443271629..f98b2e1cedf 100644
--- a/net/mac80211/ieee80211_sta.c
+++ b/net/mac80211/ieee80211_sta.c
@@ -234,7 +234,6 @@ static int ecw2cw(int ecw)
234 return cw - 1; 234 return cw - 1;
235} 235}
236 236
237
238static void ieee80211_sta_wmm_params(struct net_device *dev, 237static void ieee80211_sta_wmm_params(struct net_device *dev,
239 struct ieee80211_if_sta *ifsta, 238 struct ieee80211_if_sta *ifsta,
240 u8 *wmm_param, size_t wmm_param_len) 239 u8 *wmm_param, size_t wmm_param_len)
diff --git a/net/mac80211/wme.c b/net/mac80211/wme.c
index d303229249e..fcc8921722f 100644
--- a/net/mac80211/wme.c
+++ b/net/mac80211/wme.c
@@ -125,14 +125,13 @@ static inline int classify80211(struct sk_buff *skb, struct Qdisc *qd)
125 } 125 }
126 126
127 /* use the data classifier to determine what 802.1d tag the 127 /* use the data classifier to determine what 802.1d tag the
128 * data frame has */ 128 * data frame has */
129 skb->priority = classify_1d(skb, qd); 129 skb->priority = classify_1d(skb, qd);
130 130
131 /* incase we are a client verify acm is not set for this ac */ 131 /* in case we are a client verify acm is not set for this ac */
132 while (unlikely(local->wmm_acm & BIT(skb->priority))) { 132 while (unlikely(local->wmm_acm & BIT(skb->priority))) {
133 if (wme_downgrade_ac(skb)) { 133 if (wme_downgrade_ac(skb)) {
134 /* No AC with lower priority has acm=0, 134 /* No AC with lower priority has acm=0, drop packet. */
135 * drop packet. */
136 return -1; 135 return -1;
137 } 136 }
138 } 137 }
diff --git a/net/mac80211/wpa.c b/net/mac80211/wpa.c
index b6cd66e0ee5..775f89e42a4 100644
--- a/net/mac80211/wpa.c
+++ b/net/mac80211/wpa.c
@@ -550,7 +550,6 @@ ieee80211_tx_h_ccmp_encrypt(struct ieee80211_txrx_data *tx)
550 550
551 if (tx->u.tx.extra_frag) { 551 if (tx->u.tx.extra_frag) {
552 int i; 552 int i;
553
554 for (i = 0; i < tx->u.tx.num_extra_frag; i++) { 553 for (i = 0; i < tx->u.tx.num_extra_frag; i++) {
555 if (ccmp_encrypt_skb(tx, tx->u.tx.extra_frag[i], test) 554 if (ccmp_encrypt_skb(tx, tx->u.tx.extra_frag[i], test)
556 < 0) 555 < 0)