diff options
author | Kalle Valo <kvalo@qca.qualcomm.com> | 2014-03-11 06:58:02 -0400 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2014-03-13 01:47:05 -0400 |
commit | c28d5559e90dd84047a13b32de7229edde17e24d (patch) | |
tree | bddbaff837eb3b6dcbe52f342e3cedf9ba28d187 /drivers/net | |
parent | a5d8f9dfcf5ead45a2f164f15ca4839325c08815 (diff) |
ath6kl: remove spaces before semicolon
Fixes checkpatch warning:
CHECK: space prohibited before semicolon
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/wireless/ath/ath6kl/target.h | 2 | ||||
-rw-r--r-- | drivers/net/wireless/ath/ath6kl/txrx.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/wireless/ath/ath6kl/target.h b/drivers/net/wireless/ath/ath6kl/target.h index a580a629a0da..d5eeeae7711b 100644 --- a/drivers/net/wireless/ath/ath6kl/target.h +++ b/drivers/net/wireless/ath/ath6kl/target.h | |||
@@ -289,7 +289,7 @@ struct host_interest { | |||
289 | u32 hi_hp_rx_traffic_ratio; /* 0xd8 */ | 289 | u32 hi_hp_rx_traffic_ratio; /* 0xd8 */ |
290 | 290 | ||
291 | /* test applications flags */ | 291 | /* test applications flags */ |
292 | u32 hi_test_apps_related ; /* 0xdc */ | 292 | u32 hi_test_apps_related; /* 0xdc */ |
293 | /* location of test script */ | 293 | /* location of test script */ |
294 | u32 hi_ota_testscript; /* 0xe0 */ | 294 | u32 hi_ota_testscript; /* 0xe0 */ |
295 | /* location of CAL data */ | 295 | /* location of CAL data */ |
diff --git a/drivers/net/wireless/ath/ath6kl/txrx.c b/drivers/net/wireless/ath/ath6kl/txrx.c index e9c28a7fd235..40432fe7a5d2 100644 --- a/drivers/net/wireless/ath/ath6kl/txrx.c +++ b/drivers/net/wireless/ath/ath6kl/txrx.c | |||
@@ -361,7 +361,7 @@ int ath6kl_data_tx(struct sk_buff *skb, struct net_device *dev) | |||
361 | struct ath6kl_vif *vif = netdev_priv(dev); | 361 | struct ath6kl_vif *vif = netdev_priv(dev); |
362 | u32 map_no = 0; | 362 | u32 map_no = 0; |
363 | u16 htc_tag = ATH6KL_DATA_PKT_TAG; | 363 | u16 htc_tag = ATH6KL_DATA_PKT_TAG; |
364 | u8 ac = 99 ; /* initialize to unmapped ac */ | 364 | u8 ac = 99; /* initialize to unmapped ac */ |
365 | bool chk_adhoc_ps_mapping = false; | 365 | bool chk_adhoc_ps_mapping = false; |
366 | int ret; | 366 | int ret; |
367 | struct wmi_tx_meta_v2 meta_v2; | 367 | struct wmi_tx_meta_v2 meta_v2; |
@@ -1214,7 +1214,7 @@ static bool aggr_process_recv_frm(struct aggr_info_conn *agg_conn, u8 tid, | |||
1214 | return is_queued; | 1214 | return is_queued; |
1215 | 1215 | ||
1216 | spin_lock_bh(&rxtid->lock); | 1216 | spin_lock_bh(&rxtid->lock); |
1217 | for (idx = 0 ; idx < rxtid->hold_q_sz; idx++) { | 1217 | for (idx = 0; idx < rxtid->hold_q_sz; idx++) { |
1218 | if (rxtid->hold_q[idx].skb) { | 1218 | if (rxtid->hold_q[idx].skb) { |
1219 | /* | 1219 | /* |
1220 | * There is a frame in the queue and no | 1220 | * There is a frame in the queue and no |