[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <5d56fa86-854f-4876-be3b-b0adc129da70@gmail.com>
Date: Sun, 22 Aug 2021 12:58:39 +0200
From: Michael Straube <straube.linux@...il.com>
To: Saurav Girepunje <saurav.girepunje@...il.com>,
Larry.Finger@...inger.net, phil@...lpotter.co.uk,
gregkh@...uxfoundation.org, linux-staging@...ts.linux.dev,
linux-kernel@...r.kernel.org
Cc: saurav.girepunje@...mail.com
Subject: Re: [PATCH] staging: r8188eu: core: remove condition with no effect
On 8/21/21 10:23 PM, Saurav Girepunje wrote:
> Remove the condition with no effect (if == else) in rtw_led.c
> file.
>
> Signed-off-by: Saurav Girepunje <saurav.girepunje@...il.com>
> ---
> drivers/staging/r8188eu/core/rtw_led.c | 5 +----
> 1 file changed, 1 insertion(+), 4 deletions(-)
>
> diff --git a/drivers/staging/r8188eu/core/rtw_led.c b/drivers/staging/r8188eu/core/rtw_led.c
> index 22d4df9c92a5..76cbd5f19f90 100644
> --- a/drivers/staging/r8188eu/core/rtw_led.c
> +++ b/drivers/staging/r8188eu/core/rtw_led.c
> @@ -148,10 +148,7 @@ static void SwLedBlink(struct LED_871x *pLed)
> _set_timer(&(pLed->BlinkTimer), LED_BLINK_SLOWLY_INTERVAL);
> break;
> case LED_BLINK_WPS:
> - if (pLed->BlinkingLedState == RTW_LED_ON)
> - _set_timer(&(pLed->BlinkTimer), LED_BLINK_LONG_INTERVAL);
> - else
> - _set_timer(&(pLed->BlinkTimer), LED_BLINK_LONG_INTERVAL);
> + _set_timer(&(pLed->BlinkTimer), LED_BLINK_LONG_INTERVAL);
> break;
> default:
> _set_timer(&(pLed->BlinkTimer), LED_BLINK_SLOWLY_INTERVAL);
> --
> 2.30.2
>
>
Hi Saurav,
this does not apply to staging-testing. Please rebase against
staging-testing and send v2.
Thanks,
Michael
Powered by blists - more mailing lists