kconfig: Introduce IS_ENABLED(), IS_BUILTIN() and IS_MODULE()
authorMichal Marek <mmarek@suse.cz>
Wed, 20 Jul 2011 15:38:57 +0000 (17:38 +0200)
committerMichal Marek <mmarek@suse.cz>
Fri, 29 Jul 2011 19:53:30 +0000 (21:53 +0200)
commit2a11c8ea20bf850b3a2c60db8c2e7497d28aba99
tree975a44ccb84f5fb182fa1d6d58025b0cde381965
parentbac6aa865b3dc98e9fbc17f11d4d513d6b0bc435
kconfig: Introduce IS_ENABLED(), IS_BUILTIN() and IS_MODULE()

Replace the config_is_*() macros with a variant that allows for grepping
for usage of CONFIG_* options in the code. Usage:

  if (IS_ENABLED(CONFIG_NUMA))

or

  #if IS_ENABLED(CONFIG_NUMA)

The IS_ENABLED() macro evaluates to 1 if the argument is set (to either 'y'
or 'm'), IS_BUILTIN() tests if the option is 'y' and IS_MODULE() test if
the option is 'm'. Only boolean and tristate options are supported.

Reviewed-by: Arnaud Lacombe <lacombar@gmail.com>
Acked-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Makefile
include/linux/kconfig.h [new file with mode: 0644]
scripts/kconfig/confdata.c