summaryrefslogtreecommitdiffstats
path: root/drivers/led/Kconfig
blob: 155a78a7dff119a1587a5132b95b830a6b6d0fb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
menuconfig LED
	bool "LED support"

if LED

config LED_GPIO
	bool "gpio LED support"
	depends on GENERIC_GPIO

config LED_PWM
	bool "PWM LED support"
	depends on PWM

config LED_GPIO_OF
	bool "support parsing gpio LEDs from device tree"
	depends on LED_GPIO && OFTREE

config LED_GPIO_RGB
	bool "gpio rgb LED support"
	depends on LED_GPIO

config LED_GPIO_BICOLOR
	bool "gpio bicolor LED support"
	depends on LED_GPIO

config LED_TRIGGERS
	select POLLER
	bool "LED triggers support"
	help
	  This allows to assign certain triggers like heartbeat or network
	  activity to LEDs.

endif