diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2012-04-12 19:46:34 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-04-12 18:35:58 -0700 |
commit | e4757cab4cff01e9c47b14376be7438694032c3c (patch) | |
tree | 38e7828df0824c7cf4385e2ecdc29295d5df0864 /scripts | |
parent | a959613533a176a8f5f402585827e94a5220d2db (diff) | |
download | linux-3.10-e4757cab4cff01e9c47b14376be7438694032c3c.tar.gz linux-3.10-e4757cab4cff01e9c47b14376be7438694032c3c.tar.bz2 linux-3.10-e4757cab4cff01e9c47b14376be7438694032c3c.zip |
kconfig: delete last traces of __enabled_ from autoconf.h
We've now fixed IS_ENABLED() and friends to not require any special
"__enabled_" prefixed versions of the normal Kconfig options, so delete
the last traces of them being generated.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/kconfig/confdata.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/scripts/kconfig/confdata.c b/scripts/kconfig/confdata.c index 9d067447356..52577f052bc 100644 --- a/scripts/kconfig/confdata.c +++ b/scripts/kconfig/confdata.c @@ -489,17 +489,6 @@ header_print_symbol(FILE *fp, struct symbol *sym, const char *value, void *arg) fprintf(fp, "#define %s%s%s 1\n", CONFIG_, sym->name, suffix); } - /* - * Generate the __enabled_CONFIG_* and - * __enabled_CONFIG_*_MODULE macros for use by the - * IS_{ENABLED,BUILTIN,MODULE} macros. The _MODULE variant is - * generated even for booleans so that the IS_ENABLED() macro - * works. - */ - fprintf(fp, "#define __enabled_" CONFIG_ "%s %d\n", - sym->name, (*value == 'y')); - fprintf(fp, "#define __enabled_" CONFIG_ "%s_MODULE %d\n", - sym->name, (*value == 'm')); break; } case S_HEX: { |