zephyr/subsys/logging
Ulf Magnusson eddd98f811 kconfig: Replace some single-symbol 'if's with 'depends on'
I think people might be reading differences into 'if' and 'depends on'
that aren't there, like maybe 'if' being needed to "hide" a symbol,
while 'depends on' just adds a dependency.

There are no differences between 'if' and 'depends on'. 'if' is just a
shorthand for 'depends on'. They work the same when it comes to creating
implicit menus too.

The way symbols get "hidden" is through their dependencies not being
satisfied ('if'/'depends on' get copied up as a dependency on the
prompt).

Since 'if' and 'depends on' are the same, an 'if' with just a single
symbol in it can be replaced with a 'depends on'. IMO, it's best to
avoid 'if' there as a style choice too, because it confuses people into
thinking there's deep Kconfig magic going on that requires 'if'.

Going for 'depends on' can also remove some nested 'if's, which
generates nicer symbol information and docs, because nested 'if's really
are so simple/dumb that they just add the dependencies from both 'if's
to all symbols within.

Replace a bunch of single-symbol 'if's with 'depends on' to despam the
Kconfig files a bit and make it clearer how things work. Also do some
other minor related dependency refactoring.

The replacement isn't complete. Will fix up the rest later. Splitting it
a bit to make it more manageable.

(Everything above is true for choices, menus, and comments as well.)

Detected by tweaking the Kconfiglib parsing code. It's impossible to
detect after parsing, because 'if' turns into 'depends on'.

Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
2020-02-08 08:32:42 -05:00
..
CMakeLists.txt log: Add Intel ADSP logging backend 2020-02-05 10:43:25 -05:00
Kconfig kconfig: Replace some single-symbol 'if's with 'depends on' 2020-02-08 08:32:42 -05:00
Kconfig.template.log_config license: cleanup: add SPDX Apache-2.0 license identifier 2019-04-07 08:45:22 -04:00
log_backend_adsp.c logging: log_backend_adsp: Cleanup logging 2020-02-06 15:39:23 +02:00
log_backend_native_posix.c headers: Refactor kernel and arch headers. 2019-11-06 16:07:32 -08:00
log_backend_net.c logging: add networking syst backend support. 2019-10-29 10:18:51 +01:00
log_backend_rtt.c logging: rtt: Improve synchronous mode 2020-01-14 11:19:10 -05:00
log_backend_std.h logging: log_output: Improve immediate mode handling 2019-12-18 13:08:46 -08:00
log_backend_swo.c logging: add SWO syst backend support 2019-10-29 10:18:51 +01:00
log_backend_uart.c logging: add UART syst backend support 2019-10-29 10:18:51 +01:00
log_backend_xtensa_sim.c subsys/logging: Fix xtensa simcall assembly 2020-02-01 08:08:19 -05:00
log_cmds.c logging: Add string duplicates pool profiling 2019-05-27 10:18:10 +02:00
log_core.c logging: Add source name to error message about missing log_strdup 2020-02-01 08:09:26 -05:00
log_list.c logging: subsystem major redesign 2018-06-29 10:16:45 +02:00
log_list.h logging: subsystem major redesign 2018-06-29 10:16:45 +02:00
log_minimal.c logging: fix LOG_HEXDUMP_* in C++. 2019-12-18 21:54:18 +01:00
log_msg.c logging: Fix false strdup buffer freeing 2019-12-20 08:49:01 -05:00
log_output.c logging: log_output: Improve immediate mode handling 2019-12-18 13:08:46 -08:00
log_output_syst.c logging: add syst format output 2019-10-29 10:18:51 +01:00