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

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

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
Loading
Loading
Loading
Loading
+31 −29
Original line number Diff line number Diff line
@@ -147,12 +147,14 @@ static int s_bCommandComplete(struct vnt_private *pDevice)
		//Command Queue Empty
		pDevice->bCmdRunning = false;
		return true;
	} else {
	}

	pDevice->eCommand = pDevice->eCmdQueue[pDevice->uCmdDequeueIdx].eCmd;

	ADD_ONE_WITH_WRAP_AROUND(pDevice->uCmdDequeueIdx, CMD_Q_SIZE);
	pDevice->cbFreeCmdQueue++;
	pDevice->bCmdRunning = true;

	switch (pDevice->eCommand) {
	case WLAN_CMD_INIT_MAC80211:
		pDevice->eCommandState = WLAN_CMD_INIT_MAC80211_START;
@@ -181,8 +183,8 @@ static int s_bCommandComplete(struct vnt_private *pDevice)
	default:
		break;
	}

	vCommandTimerWait(pDevice, 0);
	}

	return true;
}