kconfig: delete last traces of __enabled_ from autoconf.h
authorPaul Gortmaker <paul.gortmaker@windriver.com>
Thu, 12 Apr 2012 23:46:34 +0000 (19:46 -0400)
committerChristian Lamparter <chunkeey@googlemail.com>
Thu, 13 Sep 2012 23:48:27 +0000 (01:48 +0200)
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>
Signed-off-by: Christian Lamparter <chunkeey@googlemail.com>
config/confdata.c

index 41a59bbc76ce1b8b22fb0c2b15f0680ae7366500..d45c37e6c7983eb3189529af59bf54bb6c76eb8b 100644 (file)
@@ -535,17 +535,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: {