mirror of https://gitee.com/openkylin/linux.git
staging: vt6656: remove unused variables from struct tagCMD_ITEM
Also remove local variables Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
cf07bb8e84
commit
18647c5877
|
@ -141,8 +141,6 @@ void vRunCommand(struct work_struct *work)
|
|||
|
||||
static int s_bCommandComplete(struct vnt_private *pDevice)
|
||||
{
|
||||
int bRadioCmd = false;
|
||||
int bForceSCAN = true;
|
||||
|
||||
pDevice->eCommandState = WLAN_CMD_IDLE;
|
||||
if (pDevice->cbFreeCmdQueue == CMD_Q_SIZE) {
|
||||
|
@ -151,8 +149,7 @@ static int s_bCommandComplete(struct vnt_private *pDevice)
|
|||
return true;
|
||||
} else {
|
||||
pDevice->eCommand = pDevice->eCmdQueue[pDevice->uCmdDequeueIdx].eCmd;
|
||||
bRadioCmd = pDevice->eCmdQueue[pDevice->uCmdDequeueIdx].bRadioCmd;
|
||||
bForceSCAN = pDevice->eCmdQueue[pDevice->uCmdDequeueIdx].bForceSCAN;
|
||||
|
||||
ADD_ONE_WITH_WRAP_AROUND(pDevice->uCmdDequeueIdx, CMD_Q_SIZE);
|
||||
pDevice->cbFreeCmdQueue++;
|
||||
pDevice->bCmdRunning = true;
|
||||
|
@ -197,7 +194,6 @@ int bScheduleCommand(struct vnt_private *pDevice,
|
|||
if (pDevice->cbFreeCmdQueue == 0)
|
||||
return false;
|
||||
pDevice->eCmdQueue[pDevice->uCmdEnqueueIdx].eCmd = eCommand;
|
||||
pDevice->eCmdQueue[pDevice->uCmdEnqueueIdx].bForceSCAN = true;
|
||||
|
||||
ADD_ONE_WITH_WRAP_AROUND(pDevice->uCmdEnqueueIdx, CMD_Q_SIZE);
|
||||
pDevice->cbFreeCmdQueue--;
|
||||
|
|
|
@ -58,10 +58,6 @@ typedef enum tagCMD_STATUS {
|
|||
|
||||
typedef struct tagCMD_ITEM {
|
||||
CMD_CODE eCmd;
|
||||
bool bNeedRadioOFF;
|
||||
bool bRadioCmd;
|
||||
bool bForceSCAN;
|
||||
u16 wDeAuthenReason;
|
||||
} CMD_ITEM, *PCMD_ITEM;
|
||||
|
||||
// Command state
|
||||
|
|
Loading…
Reference in New Issue