kconfig: doc: Update comment regarding CONFIG_IS_ENABLED(FOO) for TPL
authorLukasz Majewski <lukma@denx.de>
Tue, 3 Sep 2019 13:43:55 +0000 (15:43 +0200)
committerTom Rini <trini@konsulko.com>
Thu, 19 Sep 2019 16:54:28 +0000 (12:54 -0400)
This patch adds some commit info for CONFIG_IS_ENABLED(FOO) when used in
TPL context.

Signed-off-by: Lukasz Majewski <lukma@denx.de>
include/linux/kconfig.h

index fbfc7188b8f646972303b37e9fd829736dfc35ba..3a2da738c4f00fd97fec6fd732d80d60fb529c84 100644 (file)
@@ -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) \