kconfig: Temporarily disable dependency warnings

After fixing a use-after-free bug in kconfig, a 'make defconfig' or
'make allmodconfig' fills the screen with warnings that were not
detected before. Given that we are close to the release now, disable the
warnings temporarily and deal with them after 2.6.36.

Signed-off-by: Michal Marek <mmarek@suse.cz>

+2
+2
scripts/kconfig/symbol.c
··· 350 350 } 351 351 } 352 352 calc_newval: 353 + #if 0 353 354 if (sym->dir_dep.tri == no && sym->rev_dep.tri != no) { 354 355 fprintf(stderr, "warning: ("); 355 356 expr_fprint(sym->rev_dep.expr, stderr); ··· 359 358 expr_fprint(sym->dir_dep.expr, stderr); 360 359 fprintf(stderr, ")\n"); 361 360 } 361 + #endif 362 362 newval.tri = EXPR_OR(newval.tri, sym->rev_dep.tri); 363 363 } 364 364 if (newval.tri == mod && sym_get_type(sym) == S_BOOLEAN)