All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] leds: don't disable blinking when writing the same value to delay_on or delay_off
@ 2012-05-28 15:35 Rafal Prylowski
  2012-05-29  1:52 ` Bryan Wu
  0 siblings, 1 reply; 2+ messages in thread
From: Rafal Prylowski @ 2012-05-28 15:35 UTC (permalink / raw)
  To: linux-kernel@vger.kernel.org
  Cc: Bryan Wu, Richard Purdie, Rafał Pryłowski

Function led_set_software_blink() assumes that blink timer is still running,
but commit 488bc35bf40df89d37486c1826b178a2fba36ce7 introduced disabling
of blink timer before each call to led_set_software_blink().

Correct led_software_blink():
1) remove protection against reprogramming blink timer to the same values,
   because it only disables blinking now,
2) remove unnecessary call to led_stop_software_blink().

Signed-off-by: Rafal Prylowski <prylowski@metasoft.pl>
Cc: Bryan Wu <bryan.wu@canonical.com>
Cc: Richard Purdie <rpurdie@rpsys.net>
---

Patch applies to current mainline.

 drivers/leds/led-core.c |    7 -------
 1 file changed, 7 deletions(-)

Index: mainline/drivers/leds/led-core.c
===================================================================
--- mainline.orig/drivers/leds/led-core.c
+++ mainline/drivers/leds/led-core.c
@@ -44,13 +44,6 @@ static void led_set_software_blink(struc
 	if (!led_cdev->blink_brightness)
 		led_cdev->blink_brightness = led_cdev->max_brightness;
 
-	if (led_get_trigger_data(led_cdev) &&
-	    delay_on == led_cdev->blink_delay_on &&
-	    delay_off == led_cdev->blink_delay_off)
-		return;
-
-	led_stop_software_blink(led_cdev);
-
 	led_cdev->blink_delay_on = delay_on;
 	led_cdev->blink_delay_off = delay_off;
 

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] leds: don't disable blinking when writing the same value to delay_on or delay_off
  2012-05-28 15:35 [PATCH] leds: don't disable blinking when writing the same value to delay_on or delay_off Rafal Prylowski
@ 2012-05-29  1:52 ` Bryan Wu
  0 siblings, 0 replies; 2+ messages in thread
From: Bryan Wu @ 2012-05-29  1:52 UTC (permalink / raw)
  To: Rafal Prylowski; +Cc: linux-kernel@vger.kernel.org, Richard Purdie

On Mon, May 28, 2012 at 11:35 PM, Rafal Prylowski <prylowski@metasoft.pl> wrote:
> Function led_set_software_blink() assumes that blink timer is still running,
> but commit 488bc35bf40df89d37486c1826b178a2fba36ce7 introduced disabling
> of blink timer before each call to led_set_software_blink().
>
> Correct led_software_blink():
> 1) remove protection against reprogramming blink timer to the same values,
>   because it only disables blinking now,
> 2) remove unnecessary call to led_stop_software_blink().
>

Fair enough. Applied to my fixed-for-3.5 branch.

Thanks,
-Bryan

> Signed-off-by: Rafal Prylowski <prylowski@metasoft.pl>
> Cc: Bryan Wu <bryan.wu@canonical.com>
> Cc: Richard Purdie <rpurdie@rpsys.net>
> ---
>
> Patch applies to current mainline.
>
>  drivers/leds/led-core.c |    7 -------
>  1 file changed, 7 deletions(-)
>
> Index: mainline/drivers/leds/led-core.c
> ===================================================================
> --- mainline.orig/drivers/leds/led-core.c
> +++ mainline/drivers/leds/led-core.c
> @@ -44,13 +44,6 @@ static void led_set_software_blink(struc
>        if (!led_cdev->blink_brightness)
>                led_cdev->blink_brightness = led_cdev->max_brightness;
>
> -       if (led_get_trigger_data(led_cdev) &&
> -           delay_on == led_cdev->blink_delay_on &&
> -           delay_off == led_cdev->blink_delay_off)
> -               return;
> -
> -       led_stop_software_blink(led_cdev);
> -
>        led_cdev->blink_delay_on = delay_on;
>        led_cdev->blink_delay_off = delay_off;
>



-- 
Bryan Wu <bryan.wu@canonical.com>
Kernel Developer    +86.186-168-78255 Mobile
Canonical Ltd.      www.canonical.com
Ubuntu - Linux for human beings | www.ubuntu.com

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-05-29  1:52 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-28 15:35 [PATCH] leds: don't disable blinking when writing the same value to delay_on or delay_off Rafal Prylowski
2012-05-29  1:52 ` Bryan Wu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.