mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 2.6.37] led_class: fix typo in blink API
@ 2010-11-27 18:42 Johannes Berg
  2010-12-18 17:20 ` Johannes Berg
  0 siblings, 1 reply; 2+ messages in thread
From: Johannes Berg @ 2010-11-27 18:42 UTC (permalink / raw)
  To: Andrew Morton; +Cc: LKML, Richard Purdie

From: Johannes Berg <johannes.berg@intel.com>

When I added led_blink_set I had a typo: the
return value of the hw offload is a regular
error code that is zero when succesful, and
in that case software emulation should not
be used, rather than the other way around.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
---
It'd be nice to get this into 2.6.37 since the patch
that has the bug is in there. Sorry about that -- I
had tested the software implementation extensively but
apparently never tested the hw offload part.

 drivers/leds/led-class.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- wireless-testing.orig/drivers/leds/led-class.c	2010-11-27 19:32:24.000000000 +0100
+++ wireless-testing/drivers/leds/led-class.c	2010-11-27 19:35:41.000000000 +0100
@@ -267,7 +267,7 @@ void led_blink_set(struct led_classdev *
 		   unsigned long *delay_off)
 {
 	if (led_cdev->blink_set &&
-	    led_cdev->blink_set(led_cdev, delay_on, delay_off))
+	    !led_cdev->blink_set(led_cdev, delay_on, delay_off))
 		return;
 
 	/* blink with 1 Hz as default if nothing specified */



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

* Re: [PATCH 2.6.37] led_class: fix typo in blink API
  2010-11-27 18:42 [PATCH 2.6.37] led_class: fix typo in blink API Johannes Berg
@ 2010-12-18 17:20 ` Johannes Berg
  0 siblings, 0 replies; 2+ messages in thread
From: Johannes Berg @ 2010-12-18 17:20 UTC (permalink / raw)
  To: Andrew Morton; +Cc: LKML, Richard Purdie

On Sat, 2010-11-27 at 19:42 +0100, Johannes Berg wrote:
> From: Johannes Berg <johannes.berg@intel.com>
> 
> When I added led_blink_set I had a typo: the
> return value of the hw offload is a regular
> error code that is zero when succesful, and
> in that case software emulation should not
> be used, rather than the other way around.
> 
> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
> ---
> It'd be nice to get this into 2.6.37 since the patch
> that has the bug is in there. Sorry about that -- I
> had tested the software implementation extensively but
> apparently never tested the hw offload part.

Any chance of this getting in still?

johannes


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

end of thread, other threads:[~2010-12-18 17:20 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-11-27 18:42 [PATCH 2.6.37] led_class: fix typo in blink API Johannes Berg
2010-12-18 17:20 ` Johannes Berg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome