]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
staging: rtl8188eu: Remove unused member cmd_issued_cnt from struct cmd_priv
authornavin patidar <navin.patidar@gmail.com>
Thu, 10 Jul 2014 03:42:01 +0000 (09:12 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 10 Jul 2014 04:14:34 +0000 (21:14 -0700)
Signed-off-by: navin patidar <navin.patidar@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/core/rtw_cmd.c
drivers/staging/rtl8188eu/include/rtw_cmd.h

index 7f69885ee96ba628d401950e3bc8f5df49d8c23d..2e70203c4e6df877e6db153034867bdb10381b17 100644 (file)
@@ -64,7 +64,6 @@ int rtw_init_cmd_priv(struct cmd_priv *pcmdpriv)
 
        pcmdpriv->rsp_buf = pcmdpriv->rsp_allocated_buf  +  4 - ((size_t)(pcmdpriv->rsp_allocated_buf) & 3);
 
-       pcmdpriv->cmd_issued_cnt = 0;
        pcmdpriv->cmd_done_cnt = 0;
 exit:
        return res;
@@ -246,8 +245,6 @@ _next:
                        goto post_process;
                }
 
-               pcmdpriv->cmd_issued_cnt++;
-
                pcmd->cmdsz = round_up(pcmd->cmdsz, 4);
 
                memcpy(pcmdbuf, pcmd->parmbuf, pcmd->cmdsz);
index 60f953b4e9a23bd11ee6d828a30a228062e62934..b4ee2c8dfdf422e15234f44b3ece99596d3e8635 100644 (file)
@@ -52,7 +52,6 @@ struct cmd_priv {
        u8      *cmd_allocated_buf;
        u8      *rsp_buf;       /* shall be non-paged, and 4 bytes aligned */
        u8      *rsp_allocated_buf;
-       u32     cmd_issued_cnt;
        u32     cmd_done_cnt;
        u8 cmdthd_running;
        struct adapter *padapter;