]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
staging: rtl8188eu: Remove unused member rsp_cnt from struct cmd_priv
authornavin patidar <navin.patidar@gmail.com>
Thu, 10 Jul 2014 03:42:00 +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 6cf29bfad3ae432903553e8066545379f615aef4..7f69885ee96ba628d401950e3bc8f5df49d8c23d 100644 (file)
@@ -66,7 +66,6 @@ int rtw_init_cmd_priv(struct cmd_priv *pcmdpriv)
 
        pcmdpriv->cmd_issued_cnt = 0;
        pcmdpriv->cmd_done_cnt = 0;
-       pcmdpriv->rsp_cnt = 0;
 exit:
        return res;
 }
index b3529dac7aa58614506d864b37c90f96eb5c07f1..60f953b4e9a23bd11ee6d828a30a228062e62934 100644 (file)
@@ -54,7 +54,6 @@ struct cmd_priv {
        u8      *rsp_allocated_buf;
        u32     cmd_issued_cnt;
        u32     cmd_done_cnt;
-       u32     rsp_cnt;
        u8 cmdthd_running;
        struct adapter *padapter;
 };