The driver neither sleeps nor uses delays in its brightness_set op. Mark it fast then. Signed-off-by: Jacek Anaszewski <j.anaszewski@xxxxxxxxxxx> Cc: Linus Walleij <linus.walleij@xxxxxxxxxx> --- drivers/leds/leds-versatile.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/leds/leds-versatile.c b/drivers/leds/leds-versatile.c index 8055302..46ba28f 100644 --- a/drivers/leds/leds-versatile.c +++ b/drivers/leds/leds-versatile.c @@ -85,6 +85,7 @@ static int versatile_leds_probe(struct platform_device *dev) led->cdev.brightness_set = versatile_led_set; led->cdev.brightness_get = versatile_led_get; led->cdev.default_trigger = versatile_leds[i].trigger; + led->cdev.flags |= LED_BRIGHTNESS_FAST; led->mask = BIT(i); if (led_classdev_register(NULL, &led->cdev) < 0) { -- 1.7.9.5 -- To unsubscribe from this list: send the line "unsubscribe linux-leds" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html