diff options
author | Roman Zippel <zippel@linux-m68k.org> | 2006-06-09 01:12:40 -0400 |
---|---|---|
committer | Sam Ravnborg <sam@mars.ravnborg.org> | 2006-06-09 01:31:30 -0400 |
commit | c0e150acde52e4661675539bf5323309270f2e83 (patch) | |
tree | 0a2d1a7a3725e88c321ffb6980aea3d6c90b5bd4 /scripts/kconfig/gconf.c | |
parent | c955ccafc38e77312b4c65e5a70960080fb8a3f2 (diff) |
kconfig: remove SYMBOL_{YES,MOD,NO}
The SYMBOL_{YES,MOD,NO} are not really used anymore (they were more used be
the cml1 converter), so just remove them.
Signed-off-by: Roman Zippel <zippel@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts/kconfig/gconf.c')
-rw-r--r-- | scripts/kconfig/gconf.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/scripts/kconfig/gconf.c b/scripts/kconfig/gconf.c index 665bd5300a19..9cb3e6a47555 100644 --- a/scripts/kconfig/gconf.c +++ b/scripts/kconfig/gconf.c | |||
@@ -114,12 +114,6 @@ const char *dbg_print_flags(int val) | |||
114 | 114 | ||
115 | bzero(buf, 256); | 115 | bzero(buf, 256); |
116 | 116 | ||
117 | if (val & SYMBOL_YES) | ||
118 | strcat(buf, "yes/"); | ||
119 | if (val & SYMBOL_MOD) | ||
120 | strcat(buf, "mod/"); | ||
121 | if (val & SYMBOL_NO) | ||
122 | strcat(buf, "no/"); | ||
123 | if (val & SYMBOL_CONST) | 117 | if (val & SYMBOL_CONST) |
124 | strcat(buf, "const/"); | 118 | strcat(buf, "const/"); |
125 | if (val & SYMBOL_CHECK) | 119 | if (val & SYMBOL_CHECK) |