summaryrefslogtreecommitdiffstats
path: root/drivers/led
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2015-08-30 16:55:14 -0600
committerSimon Glass <sjg@chromium.org>2015-09-02 21:28:22 -0600
commit6a436c9182a90551739a5b7b3f44254234056915 (patch)
treeb4a87a9d6b879de05375afa00e9129e2d0685e4b /drivers/led
parentc5acf4a2b3c6fd49aa0bc02db50f4b625b2e2991 (diff)
downloadblackbird-obmc-uboot-6a436c9182a90551739a5b7b3f44254234056915.tar.gz
blackbird-obmc-uboot-6a436c9182a90551739a5b7b3f44254234056915.zip
dm: led: Tidy up SPL options for the led and led-gpio
At present SPL does not have its own option. But these features can increase SPL code size. Adjust the Kconfig and Makefile so that separate a SPL option can be selected. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/led')
-rw-r--r--drivers/led/Kconfig9
-rw-r--r--drivers/led/Makefile4
2 files changed, 10 insertions, 3 deletions
diff --git a/drivers/led/Kconfig b/drivers/led/Kconfig
index 2987337219..fe74403460 100644
--- a/drivers/led/Kconfig
+++ b/drivers/led/Kconfig
@@ -11,7 +11,7 @@ config LED
config SPL_LED
bool "Enable LED support in SPL"
- depends on LED
+ depends on SPL && SPL_DM
help
The LED subsystem adds a small amount of overhead to the image.
If this is acceptable and you have a need to use LEDs in SPL,
@@ -27,4 +27,11 @@ config LED_GPIO
The GPIO driver must used driver model. LEDs are configured using
the device tree.
+config SPL_LED_GPIO
+ bool "LED support for GPIO-connected LEDs in SPL"
+ depends on SPL_LED && DM_GPIO
+ help
+ This option is an SPL-variant of the LED_GPIO option.
+ See the help of LED_GPIO for details.
+
endmenu
diff --git a/drivers/led/Makefile b/drivers/led/Makefile
index 990129e08d..02367fdacb 100644
--- a/drivers/led/Makefile
+++ b/drivers/led/Makefile
@@ -5,5 +5,5 @@
# SPDX-License-Identifier: GPL-2.0+
#
-obj-$(CONFIG_LED) += led-uclass.o
-obj-$(CONFIG_LED_GPIO) += led_gpio.o
+obj-y += led-uclass.o
+obj-$(CONFIG_$(SPL_)LED_GPIO) += led_gpio.o
OpenPOWER on IntegriCloud