Commit 3a968d76 authored by Ujjal Roy's avatar Ujjal Roy Committed by Kalle Valo

mwifiex: Removed extra spaces before commas

This patch fixes spaces before commas issue in coding style.
Signed-off-by: default avatarUjjal Roy <royujjal@gmail.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent 32962d5b
...@@ -1401,7 +1401,7 @@ mwifiex_pcie_send_boot_cmd(struct mwifiex_adapter *adapter, struct sk_buff *skb) ...@@ -1401,7 +1401,7 @@ mwifiex_pcie_send_boot_cmd(struct mwifiex_adapter *adapter, struct sk_buff *skb)
return -1; return -1;
} }
if (mwifiex_map_pci_memory(adapter, skb, skb->len , PCI_DMA_TODEVICE)) if (mwifiex_map_pci_memory(adapter, skb, skb->len, PCI_DMA_TODEVICE))
return -1; return -1;
buf_pa = MWIFIEX_SKB_DMA_ADDR(skb); buf_pa = MWIFIEX_SKB_DMA_ADDR(skb);
......
...@@ -192,7 +192,7 @@ mwifiex_set_ht_params(struct mwifiex_private *priv, ...@@ -192,7 +192,7 @@ mwifiex_set_ht_params(struct mwifiex_private *priv,
} }
priv->ap_11n_enabled = 1; priv->ap_11n_enabled = 1;
} else { } else {
memset(&bss_cfg->ht_cap , 0, sizeof(struct ieee80211_ht_cap)); memset(&bss_cfg->ht_cap, 0, sizeof(struct ieee80211_ht_cap));
bss_cfg->ht_cap.cap_info = cpu_to_le16(MWIFIEX_DEF_HT_CAP); bss_cfg->ht_cap.cap_info = cpu_to_le16(MWIFIEX_DEF_HT_CAP);
bss_cfg->ht_cap.ampdu_params_info = MWIFIEX_DEF_AMPDU; bss_cfg->ht_cap.ampdu_params_info = MWIFIEX_DEF_AMPDU;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment