| 1 | --- a/drivers/leds/Kconfig |
| 2 | +++ b/drivers/leds/Kconfig |
| 3 | @@ -322,4 +322,12 @@ config LEDS_TRIGGER_USBDEV |
| 4 | This allows LEDs to be controlled by the presence/activity of |
| 5 | an USB device. If unsure, say N. |
| 6 | |
| 7 | +config LEDS_TRIGGER_ADM5120_SWITCH |
| 8 | + tristate "LED ADM5120 Switch Port Status Trigger" |
| 9 | + depends on LEDS_TRIGGERS && ADM5120 |
| 10 | + help |
| 11 | + This allows LEDs to be controlled by the port states of |
| 12 | + the ADM5120 built-in Ethernet Switch |
| 13 | + If unsure, say N. |
| 14 | + |
| 15 | endif # NEW_LEDS |
| 16 | --- a/drivers/leds/Makefile |
| 17 | +++ b/drivers/leds/Makefile |
| 18 | @@ -43,3 +43,4 @@ obj-$(CONFIG_LEDS_TRIGGER_DEFAULT_ON) += |
| 19 | obj-$(CONFIG_LEDS_TRIGGER_MORSE) += ledtrig-morse.o |
| 20 | obj-$(CONFIG_LEDS_TRIGGER_NETDEV) += ledtrig-netdev.o |
| 21 | obj-$(CONFIG_LEDS_TRIGGER_USBDEV) += ledtrig-usbdev.o |
| 22 | +obj-$(CONFIG_LEDS_TRIGGER_ADM5120_SWITCH) += ledtrig-adm5120-switch.o |
| 23 | |