From: Sebastian Siewior Date: Tue, 4 Mar 2008 17:22:27 +0000 (+0100) Subject: libertas: compare the current command with response X-Git-Tag: v2.6.25-rc4~2^2~1^2~2 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=8a96df80b3;p=karo-tx-linux.git libertas: compare the current command with response instead of with itself. Signed-off-by: Sebastian Siewior Signed-off-by: John W. Linville --- diff --git a/drivers/net/wireless/libertas/cmdresp.c b/drivers/net/wireless/libertas/cmdresp.c index e2b0746c6cb9..bdc6a1cc2103 100644 --- a/drivers/net/wireless/libertas/cmdresp.c +++ b/drivers/net/wireless/libertas/cmdresp.c @@ -562,9 +562,7 @@ int lbs_process_rx_command(struct lbs_private *priv) } resp = (void *)priv->upld_buf; - - curcmd = le16_to_cpu(resp->command); - + curcmd = le16_to_cpu(priv->cur_cmd->cmdbuf->command); respcmd = le16_to_cpu(resp->command); result = le16_to_cpu(resp->result);