]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
dm: led: Tidy up SPL options for the led and led-gpio
authorSimon Glass <sjg@chromium.org>
Sun, 30 Aug 2015 22:55:14 +0000 (16:55 -0600)
committerSimon Glass <sjg@chromium.org>
Thu, 3 Sep 2015 03:28:22 +0000 (21:28 -0600)
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>
drivers/led/Kconfig
drivers/led/Makefile

index 2987337219d75d1dd19843d139528fb65aa3f0ec..fe74403460a94c95914fc5107fc79c667bd736ed 100644 (file)
@@ -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
index 990129e08d366d0ca54c049a03cbbee8ea71887b..02367fdacbc10e77abbe51979b2a40bc1fa2bc56 100644 (file)
@@ -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