Skip to content
Snippets Groups Projects
Commit b1f7d6e1 authored by Michal Marek's avatar Michal Marek
Browse files

Revert "kconfig: Temporarily disable dependency warnings"


This reverts commit 71ebc01d, which was a 2.6.36-only stopgap solution.

Signed-off-by: default avatarMichal Marek <mmarek@suse.cz>
parent 239060b9
No related branches found
No related tags found
No related merge requests found
...@@ -350,7 +350,6 @@ void sym_calc_value(struct symbol *sym) ...@@ -350,7 +350,6 @@ void sym_calc_value(struct symbol *sym)
} }
} }
calc_newval: calc_newval:
#if 0
if (sym->dir_dep.tri == no && sym->rev_dep.tri != no) { if (sym->dir_dep.tri == no && sym->rev_dep.tri != no) {
fprintf(stderr, "warning: ("); fprintf(stderr, "warning: (");
expr_fprint(sym->rev_dep.expr, stderr); expr_fprint(sym->rev_dep.expr, stderr);
...@@ -359,7 +358,6 @@ void sym_calc_value(struct symbol *sym) ...@@ -359,7 +358,6 @@ void sym_calc_value(struct symbol *sym)
expr_fprint(sym->dir_dep.expr, stderr); expr_fprint(sym->dir_dep.expr, stderr);
fprintf(stderr, ")\n"); fprintf(stderr, ")\n");
} }
#endif
newval.tri = EXPR_OR(newval.tri, sym->rev_dep.tri); newval.tri = EXPR_OR(newval.tri, sym->rev_dep.tri);
} }
if (newval.tri == mod && sym_get_type(sym) == S_BOOLEAN) if (newval.tri == mod && sym_get_type(sym) == S_BOOLEAN)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment