staging: rtl8188eu: remove unnecessary parentheses in rtw_led.c
authorMichael Straube <straube.linux@gmail.com>
Sat, 8 Sep 2018 12:13:52 +0000 (14:13 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 11 Sep 2018 16:35:16 +0000 (18:35 +0200)
Remove unnecessary parentheses from conditionals.
Also clears 'Alignment should match open parenthesis'
checkpatch issue.

Signed-off-by: Michael Straube <straube.linux@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/core/rtw_led.c

index 217a1aa..d51494e 100644 (file)
@@ -18,7 +18,7 @@ static void BlinkTimerCallback(struct timer_list *t)
        struct LED_871x *pLed = from_timer(pLed, t, BlinkTimer);
        struct adapter *padapter = pLed->padapter;
 
-       if ((padapter->bSurpriseRemoved) || (padapter->bDriverStopped))
+       if (padapter->bSurpriseRemoved || padapter->bDriverStopped)
                return;
 
        schedule_work(&pLed->BlinkWorkItem);
@@ -460,7 +460,7 @@ void BlinkHandler(struct LED_871x *pLed)
 {
        struct adapter *padapter = pLed->padapter;
 
-       if ((padapter->bSurpriseRemoved) || (padapter->bDriverStopped))
+       if (padapter->bSurpriseRemoved || padapter->bDriverStopped)
                return;
 
        SwLedBlink1(pLed);
@@ -468,8 +468,8 @@ void BlinkHandler(struct LED_871x *pLed)
 
 void LedControl8188eu(struct adapter *padapter, enum LED_CTL_MODE LedAction)
 {
-       if ((padapter->bSurpriseRemoved) || (padapter->bDriverStopped) ||
-          (!padapter->hw_init_completed))
+       if (padapter->bSurpriseRemoved || padapter->bDriverStopped ||
+           !padapter->hw_init_completed)
                return;
 
        if ((padapter->pwrctrlpriv.rf_pwrstate != rf_on &&