aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2016-06-14 01:58:54 -0400
committerMichal Marek <mmarek@suse.com>2016-06-20 16:42:32 -0400
commit4f920843d248946545415c1bf6120942048708ed (patch)
tree75cc8bd837bffdca7f7c96712d03c500100b37d7
parent78283edf2c01c38eb840a3de5ffd18fe2992ab64 (diff)
kconfig.h: use __is_defined() to check if MODULE is defined
The macro MODULE is not a config option, it is a per-file build option. So, config_enabled(MODULE) is not sensible. (There is another case in include/linux/export.h, where config_enabled() is used against a non-config option.) This commit renames some macros in include/linux/kconfig.h for the use for non-config macros and replaces config_enabled(MODULE) with __is_defined(MODULE). I am keeping config_enabled() because it is still referenced from some places, but I expect it would be deprecated in the future. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: Michal Marek <mmarek@suse.com>
-rw-r--r--include/linux/kconfig.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/include/linux/kconfig.h b/include/linux/kconfig.h
index b33c7797eb57..a94b5bf57f51 100644
--- a/include/linux/kconfig.h
+++ b/include/linux/kconfig.h
@@ -17,10 +17,11 @@
17 * the last step cherry picks the 2nd arg, we get a zero. 17 * the last step cherry picks the 2nd arg, we get a zero.
18 */ 18 */
19#define __ARG_PLACEHOLDER_1 0, 19#define __ARG_PLACEHOLDER_1 0,
20#define config_enabled(cfg) _config_enabled(cfg) 20#define config_enabled(cfg) ___is_defined(cfg)
21#define _config_enabled(value) __config_enabled(__ARG_PLACEHOLDER_##value) 21#define __is_defined(x) ___is_defined(x)
22#define __config_enabled(arg1_or_junk) ___config_enabled(arg1_or_junk 1, 0) 22#define ___is_defined(val) ____is_defined(__ARG_PLACEHOLDER_##val)
23#define ___config_enabled(__ignored, val, ...) val 23#define ____is_defined(arg1_or_junk) __take_second_arg(arg1_or_junk 1, 0)
24#define __take_second_arg(__ignored, val, ...) val
24 25
25/* 26/*
26 * IS_BUILTIN(CONFIG_FOO) evaluates to 1 if CONFIG_FOO is set to 'y', 0 27 * IS_BUILTIN(CONFIG_FOO) evaluates to 1 if CONFIG_FOO is set to 'y', 0
@@ -42,7 +43,7 @@
42 * built-in code when CONFIG_FOO is set to 'm'. 43 * built-in code when CONFIG_FOO is set to 'm'.
43 */ 44 */
44#define IS_REACHABLE(option) (config_enabled(option) || \ 45#define IS_REACHABLE(option) (config_enabled(option) || \
45 (config_enabled(option##_MODULE) && config_enabled(MODULE))) 46 (config_enabled(option##_MODULE) && __is_defined(MODULE)))
46 47
47/* 48/*
48 * IS_ENABLED(CONFIG_FOO) evaluates to 1 if CONFIG_FOO is set to 'y' or 'm', 49 * IS_ENABLED(CONFIG_FOO) evaluates to 1 if CONFIG_FOO is set to 'y' or 'm',