Commit a675dc21 authored by Malcolm Priestley's avatar Malcolm Priestley Committed by Greg Kroah-Hartman

staging: vt6656: s_bCommandComplete remove else from if

if returns out so remove else
Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 18647c58
...@@ -147,12 +147,14 @@ static int s_bCommandComplete(struct vnt_private *pDevice) ...@@ -147,12 +147,14 @@ static int s_bCommandComplete(struct vnt_private *pDevice)
//Command Queue Empty //Command Queue Empty
pDevice->bCmdRunning = false; pDevice->bCmdRunning = false;
return true; return true;
} else { }
pDevice->eCommand = pDevice->eCmdQueue[pDevice->uCmdDequeueIdx].eCmd; pDevice->eCommand = pDevice->eCmdQueue[pDevice->uCmdDequeueIdx].eCmd;
ADD_ONE_WITH_WRAP_AROUND(pDevice->uCmdDequeueIdx, CMD_Q_SIZE); ADD_ONE_WITH_WRAP_AROUND(pDevice->uCmdDequeueIdx, CMD_Q_SIZE);
pDevice->cbFreeCmdQueue++; pDevice->cbFreeCmdQueue++;
pDevice->bCmdRunning = true; pDevice->bCmdRunning = true;
switch (pDevice->eCommand) { switch (pDevice->eCommand) {
case WLAN_CMD_INIT_MAC80211: case WLAN_CMD_INIT_MAC80211:
pDevice->eCommandState = WLAN_CMD_INIT_MAC80211_START; pDevice->eCommandState = WLAN_CMD_INIT_MAC80211_START;
...@@ -181,8 +183,8 @@ static int s_bCommandComplete(struct vnt_private *pDevice) ...@@ -181,8 +183,8 @@ static int s_bCommandComplete(struct vnt_private *pDevice)
default: default:
break; break;
} }
vCommandTimerWait(pDevice, 0); vCommandTimerWait(pDevice, 0);
}
return true; return true;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment