commit | 5a9390be8222905777f01afc6ca2b9e4d2a89cb7 | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Tue Jun 23 15:38:46 2015 -0600 |
committer | Simon Glass <sjg@chromium.org> | Tue Jul 21 17:39:24 2015 -0600 |
tree | 83369bd34bf572f1df277e04e8772e8829a917b6 | |
parent | cce3aedc2b1e0100db9d609a22ce8d9fb2d113a5 [diff] [blame] |
dm: led: Add a driver for GPIO-controlled LEDs Add a simple driver which allows use of LEDs attached to GPIOs. The linux device tree binding is used. Signed-off-by: Simon Glass <sjg@chromium.org>
diff --git a/drivers/led/Makefile b/drivers/led/Makefile index b39b205..990129e 100644 --- a/drivers/led/Makefile +++ b/drivers/led/Makefile
@@ -6,3 +6,4 @@ # obj-$(CONFIG_LED) += led-uclass.o +obj-$(CONFIG_LED_GPIO) += led_gpio.o