diff options
Diffstat (limited to 'scripts/kconfig/expr.h')
-rw-r--r-- | scripts/kconfig/expr.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/kconfig/expr.h b/scripts/kconfig/expr.h index 973b6f733368..a73f762c48d6 100644 --- a/scripts/kconfig/expr.h +++ b/scripts/kconfig/expr.h | |||
@@ -85,6 +85,7 @@ struct symbol { | |||
85 | struct property *prop; | 85 | struct property *prop; |
86 | struct expr_value dir_dep; | 86 | struct expr_value dir_dep; |
87 | struct expr_value rev_dep; | 87 | struct expr_value rev_dep; |
88 | struct expr_value implied; | ||
88 | }; | 89 | }; |
89 | 90 | ||
90 | #define for_all_symbols(i, sym) for (i = 0; i < SYMBOL_HASHSIZE; i++) for (sym = symbol_hash[i]; sym; sym = sym->next) if (sym->type != S_OTHER) | 91 | #define for_all_symbols(i, sym) for (i = 0; i < SYMBOL_HASHSIZE; i++) for (sym = symbol_hash[i]; sym; sym = sym->next) if (sym->type != S_OTHER) |
@@ -136,6 +137,7 @@ enum prop_type { | |||
136 | P_DEFAULT, /* default y */ | 137 | P_DEFAULT, /* default y */ |
137 | P_CHOICE, /* choice value */ | 138 | P_CHOICE, /* choice value */ |
138 | P_SELECT, /* select BAR */ | 139 | P_SELECT, /* select BAR */ |
140 | P_IMPLY, /* imply BAR */ | ||
139 | P_RANGE, /* range 7..100 (for a symbol) */ | 141 | P_RANGE, /* range 7..100 (for a symbol) */ |
140 | P_ENV, /* value from environment variable */ | 142 | P_ENV, /* value from environment variable */ |
141 | P_SYMBOL, /* where a symbol is defined */ | 143 | P_SYMBOL, /* where a symbol is defined */ |