drivers: led_strip: Kconfig: Remove redundant 'default n' properties

Bool symbols implicitly default to 'n'.

A 'default n' can make sense e.g. in a Kconfig.defconfig file, if you
want to override a 'default y' on the base definition of the symbol. It
isn't used like that on any of these symbols though, and is
inconsistent.

This will make the auto-generated Kconfig documentation have "No
defaults. Implicitly defaults to n." as well, which is clearer than
'default n if ...'

Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
This commit is contained in:
Ulf Magnusson 2018-06-27 14:12:43 +02:00 committed by Anas Nashif
commit 3ec8dd5744
4 changed files with 0 additions and 5 deletions

View file

@ -9,7 +9,6 @@
menuconfig LED_STRIP
bool "LED strip drivers"
default n
help
Include LED strip drivers in the system configuration.
@ -41,7 +40,6 @@ config LED_STRIP_INIT_PRIORITY
# is not normally needed.
config LED_STRIP_RGB_SCRATCH
bool
default n
source "drivers/led_strip/Kconfig.lpd880x"

View file

@ -8,7 +8,6 @@ menuconfig APA102_STRIP
bool "APA102 SPI LED strip driver"
depends on SPI
select LED_STRIP_RGB_SCRATCH
default n
help
Enable the LED strip driver for a chain of APA102 RGB LEDs.
These are sold as DotStar by Adafruit and Superled by others.

View file

@ -7,7 +7,6 @@
menuconfig LPD880X_STRIP
bool "Enable LPD880x SPI LED strip driver"
depends on SPI
default n
help
Enable LED strip driver for daisy chains of LPD880x
(LPD8803, LPD8806, or compatible) devices.

View file

@ -11,7 +11,6 @@
menuconfig WS2812_STRIP
bool "Enable WS2812 (and compatible) LED strip driver"
depends on SPI
default n
help
Enable LED strip driver for daisy chains of WS2812-ish
(or WS2812B, WS2813, SK6812, or compatible) devices.