diff options
Diffstat (limited to 'scripts/kconfig/gconf.c')
-rw-r--r-- | scripts/kconfig/gconf.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/scripts/kconfig/gconf.c b/scripts/kconfig/gconf.c index 665bd5300a19..7b0d3a93d5c0 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) |
@@ -138,8 +132,6 @@ const char *dbg_print_flags(int val) | |||
138 | strcat(buf, "write/"); | 132 | strcat(buf, "write/"); |
139 | if (val & SYMBOL_CHANGED) | 133 | if (val & SYMBOL_CHANGED) |
140 | strcat(buf, "changed/"); | 134 | strcat(buf, "changed/"); |
141 | if (val & SYMBOL_NEW) | ||
142 | strcat(buf, "new/"); | ||
143 | if (val & SYMBOL_AUTO) | 135 | if (val & SYMBOL_AUTO) |
144 | strcat(buf, "auto/"); | 136 | strcat(buf, "auto/"); |
145 | 137 | ||
@@ -1192,9 +1184,7 @@ static gchar **fill_row(struct menu *menu) | |||
1192 | 1184 | ||
1193 | row[COL_OPTION] = | 1185 | row[COL_OPTION] = |
1194 | g_strdup_printf("%s %s", menu_get_prompt(menu), | 1186 | g_strdup_printf("%s %s", menu_get_prompt(menu), |
1195 | sym ? (sym-> | 1187 | sym && sym_has_value(sym) ? "(NEW)" : ""); |
1196 | flags & SYMBOL_NEW ? "(NEW)" : "") : | ||
1197 | ""); | ||
1198 | 1188 | ||
1199 | if (show_all && !menu_is_visible(menu)) | 1189 | if (show_all && !menu_is_visible(menu)) |
1200 | row[COL_COLOR] = g_strdup("DarkGray"); | 1190 | row[COL_COLOR] = g_strdup("DarkGray"); |