kconfig.h: use __is_defined() to check if MODULE is defined
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Tue, 14 Jun 2016 05:58:54 +0000 (14:58 +0900)
committerMichal Marek <mmarek@suse.com>
Mon, 20 Jun 2016 20:42:32 +0000 (22:42 +0200)
commit4f920843d248946545415c1bf6120942048708ed
tree75cc8bd837bffdca7f7c96712d03c500100b37d7
parent78283edf2c01c38eb840a3de5ffd18fe2992ab64
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>
include/linux/kconfig.h