diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-04-15 16:45:11 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-04-15 16:45:11 +0000 |
commit | afaffaea3892b0d2af9269e10a2d9e09a95174f2 (patch) | |
tree | 064c98815470434478c33fc486220b8c8357d368 /kconfig/symbol.c | |
parent | 5fbbd29ee62ba971d4660a409d3d763c2617eae9 (diff) | |
download | crosstool-ng-afaffaea3892b0d2af9269e10a2d9e09a95174f2.tar.gz crosstool-ng-afaffaea3892b0d2af9269e10a2d9e09a95174f2.tar.bz2 crosstool-ng-afaffaea3892b0d2af9269e10a2d9e09a95174f2.zip |
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.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/kconfig/symbol.c b/kconfig/symbol.c index 34f42fb2..d79865cb 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); } |