diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2006-03-31 05:31:04 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-31 15:18:56 -0500 |
commit | c72a1d608dd0eb3d553a08bfdf1c0041bebaa8a0 (patch) | |
tree | 56715f0e0af8a9c33725f3db2f14cf7f870ad46d /drivers/leds/Kconfig | |
parent | 75c1d31d9ea71025b73430c696b727e8aa15872d (diff) |
[PATCH] LED: add LED class
Add the foundations of a new LEDs subsystem. This patch adds a class which
presents LED devices within sysfs and allows their brightness to be
controlled.
Signed-off-by: Richard Purdie <rpurdie@rpsys.net>
Cc: Russell King <rmk@arm.linux.org.uk>
Cc: Greg KH <greg@kroah.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/leds/Kconfig')
-rw-r--r-- | drivers/leds/Kconfig | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/drivers/leds/Kconfig b/drivers/leds/Kconfig new file mode 100644 index 000000000000..106f9aeca04f --- /dev/null +++ b/drivers/leds/Kconfig | |||
@@ -0,0 +1,18 @@ | |||
1 | |||
2 | menu "LED devices" | ||
3 | |||
4 | config NEW_LEDS | ||
5 | bool "LED Support" | ||
6 | help | ||
7 | Say Y to enable Linux LED support. This is not related to standard | ||
8 | keyboard LEDs which are controlled via the input system. | ||
9 | |||
10 | config LEDS_CLASS | ||
11 | tristate "LED Class Support" | ||
12 | depends NEW_LEDS | ||
13 | help | ||
14 | This option enables the led sysfs class in /sys/class/leds. You'll | ||
15 | need this to do anything useful with LEDs. If unsure, say N. | ||
16 | |||
17 | endmenu | ||
18 | |||