The driver neither sleeps nor uses delays in its brightness_set op.
Use a new brightness_set_nonblocking op instead of brightness_set for
setting brightness then.

Signed-off-by: Jacek Anaszewski <[email protected]>
Cc: Phil Sutter <[email protected]>
---
 drivers/leds/leds-rb532.c |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/leds/leds-rb532.c b/drivers/leds/leds-rb532.c
index fcd1215b..67e220f 100644
--- a/drivers/leds/leds-rb532.c
+++ b/drivers/leds/leds-rb532.c
@@ -31,10 +31,10 @@ static enum led_brightness rb532_led_get(struct 
led_classdev *cdev)
 }
 
 static struct led_classdev rb532_uled = {
-       .name = "uled",
-       .brightness_set = rb532_led_set,
-       .brightness_get = rb532_led_get,
-       .default_trigger = "nand-disk",
+       .name                           = "uled",
+       .brightness_set_nonblocking     = rb532_led_set,
+       .brightness_get                 = rb532_led_get,
+       .default_trigger                = "nand-disk",
 };
 
 static int rb532_led_probe(struct platform_device *pdev)
-- 
1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe linux-leds" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to