Commit f9f72f7f authored by Michael Straube's avatar Michael Straube Committed by Greg Kroah-Hartman
Browse files

staging: r8188eu: remove dead code



if (0) is never true, remove code that is never executed.

Signed-off-by: default avatarMichael Straube <straube.linux@gmail.com>
Link: https://lore.kernel.org/r/20210822114014.21584-1-straube.linux@gmail.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 3eaa30d1
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -121,10 +121,7 @@ static void SwLedBlink(struct LED_871x *pLed)
	}

	if (bStopBlinking) {
		/* if (padapter->pwrctrlpriv.cpwm >= PS_STATE_S2) */
		if (0) {
			SwLedOff(padapter, pLed);
		} else if ((check_fwstate(pmlmepriv, _FW_LINKED)) && (!pLed->bLedOn)) {
		if ((check_fwstate(pmlmepriv, _FW_LINKED)) && (!pLed->bLedOn)) {
			SwLedOn(padapter, pLed);
		} else if ((check_fwstate(pmlmepriv, _FW_LINKED)) &&  pLed->bLedOn) {
			SwLedOff(padapter, pLed);