[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-id: <20170104134107.24902-1-andi.shyti@samsung.com>
Date: Wed, 04 Jan 2017 22:41:07 +0900
From: Andi Shyti <andi.shyti@...sung.com>
To: Richard Purdie <rpurdie@...ys.net>,
Jacek Anaszewski <jacek.anaszewski@...il.com>,
Pavel Machek <pavel@....cz>
Cc: linux-leds@...r.kernel.org, linux-kernel@...r.kernel.org,
Andi Shyti <andi.shyti@...sung.com>,
Andi Shyti <andi@...zian.org>
Subject: [PATCH] leds: add LED_ON brightness as boolean value
Some devices do not handle the led brightness or simply don't
care about it. Conceptually said devices want to just switch on
or off the led. It is useless in this case to have a 255 range
of brightness, while just having an LED_ON and LED_OFF improves
the boolean meaning of the led status.
Signed-off-by: Andi Shyti <andi.shyti@...sung.com>
---
include/linux/leds.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/include/linux/leds.h b/include/linux/leds.h
index 569cb531094c..0258f9c49034 100644
--- a/include/linux/leds.h
+++ b/include/linux/leds.h
@@ -27,6 +27,7 @@ struct device;
enum led_brightness {
LED_OFF = 0,
+ LED_ON,
LED_HALF = 127,
LED_FULL = 255,
};
--
2.11.0
Powered by blists - more mailing lists