summaryrefslogtreecommitdiff
path: root/kconfig/symbol.c
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-04-15 16:45:11 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-04-15 16:45:11 (GMT)
commitafaffaea3892b0d2af9269e10a2d9e09a95174f2 (patch)
tree064c98815470434478c33fc486220b8c8357d368 /kconfig/symbol.c
parent5fbbd29ee62ba971d4660a409d3d763c2617eae9 (diff)
Update to latest kconfig from linux-2.6.20.7.
I'm not sure of the improvements, but at least we're up-to-date, and updating in the future will be easier.
Diffstat (limited to 'kconfig/symbol.c')
-rw-r--r--kconfig/symbol.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/kconfig/symbol.c b/kconfig/symbol.c
index 34f42fb..d79865c 100644
--- a/kconfig/symbol.c
+++ b/kconfig/symbol.c
@@ -30,7 +30,6 @@ struct symbol symbol_yes = {
.flags = SYMBOL_VALID,
};
-int sym_change_count;
struct symbol *sym_defconfig_list;
struct symbol *modules_sym;
tristate modules_val;
@@ -379,7 +378,7 @@ void sym_clear_all_valid(void)
for_all_symbols(i, sym)
sym->flags &= ~SYMBOL_VALID;
- sym_change_count++;
+ sym_add_change_count(1);
if (modules_sym)
sym_calc_value(modules_sym);
}