Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1204957 > unrolled thread

[PATCH/RFC v5 41/57] leds: syscon: Use brightness_set_nonblocking op

Started byJacek Anaszewski <j.anaszewski@samsung.com>
First post2015-08-11 11:50 +0200
Last post2015-08-11 15:00 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH/RFC v5 41/57] leds: syscon: Use brightness_set_nonblocking op Jacek Anaszewski <j.anaszewski@samsung.com> - 2015-08-11 11:50 +0200
    Re: [PATCH/RFC v5 41/57] leds: syscon: Use brightness_set_nonblocking op Linus Walleij <linus.walleij@linaro.org> - 2015-08-11 15:00 +0200

#1204957 — [PATCH/RFC v5 41/57] leds: syscon: Use brightness_set_nonblocking op

FromJacek Anaszewski <j.anaszewski@samsung.com>
Date2015-08-11 11:50 +0200
Subject[PATCH/RFC v5 41/57] leds: syscon: Use brightness_set_nonblocking op
Message-ID<pWelZ-1jK-45@gated-at.bofh.it>
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 <j.anaszewski@samsung.com>
Cc: Linus Walleij <linus.walleij@linaro.org>
---
 drivers/leds/leds-syscon.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/leds/leds-syscon.c b/drivers/leds/leds-syscon.c
index d1660b0..c3c0769 100644
--- a/drivers/leds/leds-syscon.c
+++ b/drivers/leds/leds-syscon.c
@@ -127,7 +127,7 @@ static int syscon_led_probe(struct platform_device *pdev)
 				return ret;
 		}
 	}
-	sled->cdev.brightness_set = syscon_led_set;
+	sled->cdev.brightness_set_nonblocking = syscon_led_set;
 
 	ret = led_classdev_register(dev, &sled->cdev);
 	if (ret < 0)
-- 
1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [next] | [standalone]


#1205123

FromLinus Walleij <linus.walleij@linaro.org>
Date2015-08-11 15:00 +0200
Message-ID<pWhjR-5z8-35@gated-at.bofh.it>
In reply to#1204957
On Tue, Aug 11, 2015 at 11:37 AM, Jacek Anaszewski
<j.anaszewski@samsung.com> wrote:

> 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 <j.anaszewski@samsung.com>
> Cc: Linus Walleij <linus.walleij@linaro.org>

Reviewed-by: Linus Walleij <linus.walleij@linaro.org>

Yours,
Linus Walleij
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web