aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBing Zhao <bzhao@marvell.com>2011-04-06 16:46:55 -0700
committerJohn W. Linville <linville@tuxdriver.com>2011-04-12 16:57:35 -0400
commit18bf965702058f5f8039e6a46bb5ebaa18d38ebd (patch)
treecb732e325a8ca20b0dc985a3eeb0499df10a256b
parentd88525e8fdc00c0078d38353caffc29e5a9c70cc (diff)
downloadkernel_samsung_smdk4412-18bf965702058f5f8039e6a46bb5ebaa18d38ebd.zip
kernel_samsung_smdk4412-18bf965702058f5f8039e6a46bb5ebaa18d38ebd.tar.gz
kernel_samsung_smdk4412-18bf965702058f5f8039e6a46bb5ebaa18d38ebd.tar.bz2
mwifiex: fix cmd_skb headroom decreasing issue
Before calling host_to_card() to send the cmd to firmware, we use skb_push() to add 4 bytes SDIO interface header at the start of the data buffer. Since cmd_skb data structure will be re-used at a later time, we need to restore its headroom by removing the 4 bytes header. Signed-off-by: Bing Zhao <bzhao@marvell.com> Signed-off-by: Marc Yang <yangyang@marvell.com> Signed-off-by: Yogesh Ashok Powar <yogeshp@marvell.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r--drivers/net/wireless/mwifiex/cmdevt.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/wireless/mwifiex/cmdevt.c b/drivers/net/wireless/mwifiex/cmdevt.c
index a9aeb31..8676480 100644
--- a/drivers/net/wireless/mwifiex/cmdevt.c
+++ b/drivers/net/wireless/mwifiex/cmdevt.c
@@ -206,6 +206,8 @@ static int mwifiex_dnld_cmd_to_fw(struct mwifiex_private *priv,
cmd_node->cmd_skb->data,
cmd_node->cmd_skb->len, NULL);
+ skb_pull(cmd_node->cmd_skb, INTF_HEADER_LEN);
+
if (ret == -1) {
dev_err(adapter->dev, "DNLD_CMD: host to card failed\n");
if (wait_queue)