lib: 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. Also simplify the default on STDOUT_CONSOLE. Defaults can be arbitrary expressions, not just fixed values. Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
This commit is contained in:
parent
34e11f0c45
commit
0785b79ebe
3 changed files with 1 additions and 9 deletions
|
@ -18,7 +18,6 @@ config JSON_LIBRARY
|
|||
config RING_BUFFER
|
||||
bool
|
||||
prompt "Enable ring buffers"
|
||||
default n
|
||||
help
|
||||
Enable usage of ring buffers. This is similar to kernel FIFOs but ring
|
||||
buffers manage their own buffer memory and can store arbitrary data.
|
||||
|
@ -27,7 +26,6 @@ config RING_BUFFER
|
|||
config BASE64
|
||||
bool
|
||||
prompt "Enable base64 encoding and decoding"
|
||||
default n
|
||||
help
|
||||
Enable base64 encoding and decoding functionality
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue