Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ac4cced6e850496b66c0825b7f74d51ef02c6371
Commit:     ac4cced6e850496b66c0825b7f74d51ef02c6371
Parent:     4694961cc2f868d6061be3b2c3d1fcf39584ff17
Author:     David Woodhouse <[EMAIL PROTECTED]>
AuthorDate: Mon Dec 17 15:12:49 2007 -0500
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Mon Jan 28 15:07:44 2008 -0800

    libertas: reduce explicit references to priv->cur_cmd->cmdbuf
    
    We have a local variable 'resp' which we use for this. So use it,
    instead of typing the whole thing.
    
    In preparation for actually using priv->upld_buf for the responses
    instead...
    
    Signed-off-by: David Woodhouse <[EMAIL PROTECTED]>
    Signed-off-by: John W. Linville <[EMAIL PROTECTED]>
---
 drivers/net/wireless/libertas/cmdresp.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/net/wireless/libertas/cmdresp.c 
b/drivers/net/wireless/libertas/cmdresp.c
index 8f9eda4..d305e98 100644
--- a/drivers/net/wireless/libertas/cmdresp.c
+++ b/drivers/net/wireless/libertas/cmdresp.c
@@ -639,10 +639,10 @@ int lbs_process_rx_command(struct lbs_private *priv)
                goto done;
        }
 
-       curcmd = le16_to_cpu(priv->cur_cmd->cmdbuf->command);
-
        resp = priv->cur_cmd->cmdbuf;
 
+       curcmd = le16_to_cpu(resp->command);
+
        respcmd = le16_to_cpu(resp->command);
        result = le16_to_cpu(resp->result);
 
@@ -650,9 +650,9 @@ int lbs_process_rx_command(struct lbs_private *priv)
                     respcmd, le16_to_cpu(resp->seqnum), priv->upld_len, 
jiffies);
        lbs_deb_hex(LBS_DEB_HOST, "CMD_RESP", (void *) resp, priv->upld_len);
 
-       if (resp->seqnum != priv->cur_cmd->cmdbuf->seqnum) {
+       if (resp->seqnum != resp->seqnum) {
                lbs_pr_info("Received CMD_RESP with invalid sequence %d 
(expected %d)\n",
-                           le16_to_cpu(resp->seqnum), 
le16_to_cpu(priv->cur_cmd->cmdbuf->seqnum));
+                           le16_to_cpu(resp->seqnum), 
le16_to_cpu(resp->seqnum));
                spin_unlock_irqrestore(&priv->driver_lock, flags);
                ret = -1;
                goto done;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to