diff options
author | Sam Ravnborg <sam@ravnborg.org> | 2008-01-07 21:13:04 +0100 |
---|---|---|
committer | Sam Ravnborg <sam@ravnborg.org> | 2008-01-28 23:14:38 +0100 |
commit | de83cf148aaefac8a538a076f2c3c4f33968e04a (patch) | |
tree | c20cea85fe69198408d22b752a1767d72e453ff9 /scripts/kconfig/gconf.c | |
parent | d6ee35764f270c699e165b15dc59f4e55546bfda (diff) | |
download | linux-de83cf148aaefac8a538a076f2c3c4f33968e04a.tar.bz2 |
kconfig: delete unused FILE_ and SYMBOL_ flags
The *_PRINTED flags were never used - so delete them.
Do we need them later then we can re-add them.
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Cc: Roman Zippel <zippel@linux-m68k.org>
Diffstat (limited to 'scripts/kconfig/gconf.c')
-rw-r--r-- | scripts/kconfig/gconf.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/scripts/kconfig/gconf.c b/scripts/kconfig/gconf.c index 262908cfc2ac..df910cbab2c0 100644 --- a/scripts/kconfig/gconf.c +++ b/scripts/kconfig/gconf.c @@ -119,8 +119,6 @@ const char *dbg_print_flags(int val) strcat(buf, "choice/"); if (val & SYMBOL_CHOICEVAL) strcat(buf, "choiceval/"); - if (val & SYMBOL_PRINTED) - strcat(buf, "printed/"); if (val & SYMBOL_VALID) strcat(buf, "valid/"); if (val & SYMBOL_OPTIONAL) |