mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00:00
ath6kl: remove spaces before semicolon
Fixes checkpatch warning: CHECK: space prohibited before semicolon Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
This commit is contained in:
parent
a5d8f9dfcf
commit
c28d5559e9
2 changed files with 3 additions and 3 deletions
|
@ -289,7 +289,7 @@ struct host_interest {
|
||||||
u32 hi_hp_rx_traffic_ratio; /* 0xd8 */
|
u32 hi_hp_rx_traffic_ratio; /* 0xd8 */
|
||||||
|
|
||||||
/* test applications flags */
|
/* test applications flags */
|
||||||
u32 hi_test_apps_related ; /* 0xdc */
|
u32 hi_test_apps_related; /* 0xdc */
|
||||||
/* location of test script */
|
/* location of test script */
|
||||||
u32 hi_ota_testscript; /* 0xe0 */
|
u32 hi_ota_testscript; /* 0xe0 */
|
||||||
/* location of CAL data */
|
/* location of CAL data */
|
||||||
|
|
|
@ -361,7 +361,7 @@ int ath6kl_data_tx(struct sk_buff *skb, struct net_device *dev)
|
||||||
struct ath6kl_vif *vif = netdev_priv(dev);
|
struct ath6kl_vif *vif = netdev_priv(dev);
|
||||||
u32 map_no = 0;
|
u32 map_no = 0;
|
||||||
u16 htc_tag = ATH6KL_DATA_PKT_TAG;
|
u16 htc_tag = ATH6KL_DATA_PKT_TAG;
|
||||||
u8 ac = 99 ; /* initialize to unmapped ac */
|
u8 ac = 99; /* initialize to unmapped ac */
|
||||||
bool chk_adhoc_ps_mapping = false;
|
bool chk_adhoc_ps_mapping = false;
|
||||||
int ret;
|
int ret;
|
||||||
struct wmi_tx_meta_v2 meta_v2;
|
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,
|
||||||
return is_queued;
|
return is_queued;
|
||||||
|
|
||||||
spin_lock_bh(&rxtid->lock);
|
spin_lock_bh(&rxtid->lock);
|
||||||
for (idx = 0 ; idx < rxtid->hold_q_sz; idx++) {
|
for (idx = 0; idx < rxtid->hold_q_sz; idx++) {
|
||||||
if (rxtid->hold_q[idx].skb) {
|
if (rxtid->hold_q[idx].skb) {
|
||||||
/*
|
/*
|
||||||
* There is a frame in the queue and no
|
* There is a frame in the queue and no
|
||||||
|
|
Loading…
Add table
Reference in a new issue