summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaja Mani2011-07-19 15:57:32 +0200
committerKalle Valo2011-08-09 18:45:21 +0200
commitc8790cbaea789467cbdc4460ff2b4a2eda413e64 (patch)
tree00b348627b5bb9f29a47d4aa6bc8fbfda590844f
parentath6kl: Rearrange the variable and the value position in IF condition (diff)
downloadkernel-qcow2-linux-c8790cbaea789467cbdc4460ff2b4a2eda413e64.tar.gz
kernel-qcow2-linux-c8790cbaea789467cbdc4460ff2b4a2eda413e64.tar.xz
kernel-qcow2-linux-c8790cbaea789467cbdc4460ff2b4a2eda413e64.zip
ath6kl: Avoid two memset to clear src and desr mac addr variable memory in ath6kl_wmi_dot11_hdr_remove()
Signed-off-by: Raja Mani <rmani@qca.qualcomm.com> Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
-rw-r--r--drivers/net/wireless/ath/ath6kl/wmi.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath/ath6kl/wmi.c b/drivers/net/wireless/ath/ath6kl/wmi.c
index a52d7d201fbd..6e4febf2e229 100644
--- a/drivers/net/wireless/ath/ath6kl/wmi.c
+++ b/drivers/net/wireless/ath/ath6kl/wmi.c
@@ -317,9 +317,8 @@ int ath6kl_wmi_dot11_hdr_remove(struct wmi *wmi, struct sk_buff *skb)
datap = skb->data;
llc_hdr = (struct ath6kl_llc_snap_hdr *)(datap);
+ memset(&eth_hdr, 0, sizeof(eth_hdr));
eth_hdr.h_proto = llc_hdr->eth_type;
- memset(eth_hdr.h_dest, 0, sizeof(eth_hdr.h_dest));
- memset(eth_hdr.h_source, 0, sizeof(eth_hdr.h_source));
switch ((le16_to_cpu(wh.frame_control)) &
(IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS)) {