Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8edacacf authored by navin patidar's avatar navin patidar Committed by Greg Kroah-Hartman
Browse files

staging: rtl8188eu: Remove unused member cmd_issued_cnt from struct cmd_priv

parent e6f33afc
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -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 @@ int rtw_cmd_thread(void *context)
			goto post_process;
		}

		pcmdpriv->cmd_issued_cnt++;

		pcmd->cmdsz = round_up(pcmd->cmdsz, 4);

		memcpy(pcmdbuf, pcmd->parmbuf, pcmd->cmdsz);
+0 −1
Original line number Diff line number Diff line
@@ -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;