diff options
author | Simon Glass <sjg@chromium.org> | 2015-06-23 15:38:46 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-07-21 17:39:24 -0600 |
commit | 5ac76bad2277ed40f2a2112ffab0f156e3b599fb (patch) | |
tree | 83369bd34bf572f1df277e04e8772e8829a917b6 /drivers/led/Makefile | |
parent | 5917112c9e9f7a60062c604b3224bd5713c41f46 (diff) | |
download | u-boot-imx-5ac76bad2277ed40f2a2112ffab0f156e3b599fb.zip u-boot-imx-5ac76bad2277ed40f2a2112ffab0f156e3b599fb.tar.gz u-boot-imx-5ac76bad2277ed40f2a2112ffab0f156e3b599fb.tar.bz2 |
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>
Diffstat (limited to 'drivers/led/Makefile')
-rw-r--r-- | drivers/led/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
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 |