Skip to content
Snippets Groups Projects
Commit fd75bf7b authored by Lukasz Majewski's avatar Lukasz Majewski Committed by Tom Rini
Browse files

kconfig: doc: Update comment regarding CONFIG_IS_ENABLED(FOO) for TPL


This patch adds some commit info for CONFIG_IS_ENABLED(FOO) when used in
TPL context.

Signed-off-by: default avatarLukasz Majewski <lukma@denx.de>
parent 5f8f46ee
No related branches found
No related tags found
No related merge requests found
......@@ -75,6 +75,7 @@
* CONFIG_VAL(FOO) evaluates to the value of
* CONFIG_FOO if CONFIG_SPL_BUILD is undefined,
* CONFIG_SPL_FOO if CONFIG_SPL_BUILD is defined.
* CONFIG_TPL_FOO if CONFIG_TPL_BUILD is defined.
*/
#define CONFIG_VAL(option) config_val(option)
......@@ -82,6 +83,7 @@
* CONFIG_IS_ENABLED(FOO) evaluates to
* 1 if CONFIG_SPL_BUILD is undefined and CONFIG_FOO is set to 'y' or 'm',
* 1 if CONFIG_SPL_BUILD is defined and CONFIG_SPL_FOO is set to 'y' or 'm',
* 1 if CONFIG_TPL_BUILD is defined and CONFIG_TPL_FOO is set to 'y' or 'm',
* 0 otherwise.
*/
#define CONFIG_IS_ENABLED(option) \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment