From: navin patidar Date: Thu, 10 Jul 2014 03:42:02 +0000 (+0530) Subject: staging: rtl8188eu: Remove unused member cmd_done_cnt from struct cmd_priv X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=4b55f02b4a96d761c57e9a6b1959f2b254f7ef8f;p=deliverable%2Flinux.git staging: rtl8188eu: Remove unused member cmd_done_cnt from struct cmd_priv Signed-off-by: navin patidar Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8188eu/core/rtw_cmd.c b/drivers/staging/rtl8188eu/core/rtw_cmd.c index 2e70203c4e6d..4035ae22a937 100644 --- a/drivers/staging/rtl8188eu/core/rtw_cmd.c +++ b/drivers/staging/rtl8188eu/core/rtw_cmd.c @@ -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_done_cnt = 0; exit: return res; } diff --git a/drivers/staging/rtl8188eu/include/rtw_cmd.h b/drivers/staging/rtl8188eu/include/rtw_cmd.h index b4ee2c8dfdf4..ca69511caf2a 100644 --- a/drivers/staging/rtl8188eu/include/rtw_cmd.h +++ b/drivers/staging/rtl8188eu/include/rtw_cmd.h @@ -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_done_cnt; u8 cmdthd_running; struct adapter *padapter; };