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


Groups > linux.kernel > #1204957

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

From Jacek Anaszewski <j.anaszewski@samsung.com>
Newsgroups linux.kernel
Subject [PATCH/RFC v5 41/57] leds: syscon: Use brightness_set_nonblocking op
Date 2015-08-11 11:50 +0200
Message-ID <pWelZ-1jK-45@gated-at.bofh.it> (permalink)
References <pWeci-17Z-9@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


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/

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[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

csiph-web