summaryrefslogtreecommitdiff
path: root/kconfig/expr.h
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2018-02-05 07:26:28 (GMT)
committerGitHub <noreply@github.com>2018-02-05 07:26:28 (GMT)
commit04d910b8267856b345db93a5395212c4f7cd9199 (patch)
tree312dddf8b98f369ce51898e3c2c020bf4351ed14 /kconfig/expr.h
parentdfcb5fe3c14db5ec291aedb567f1da4ff19f8323 (diff)
parent59b08f8d06700770cf1105269acb2ec2460e2a34 (diff)
Merge pull request #907 from bhundven/update_kconfig_4_15
Sync kconfig files with upstream 4.15
Diffstat (limited to 'kconfig/expr.h')
-rw-r--r--kconfig/expr.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/kconfig/expr.h b/kconfig/expr.h
index 973b6f7..a73f762 100644
--- a/kconfig/expr.h
+++ b/kconfig/expr.h
@@ -85,6 +85,7 @@ struct symbol {
struct property *prop;
struct expr_value dir_dep;
struct expr_value rev_dep;
+ struct expr_value implied;
};
#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 {
P_DEFAULT, /* default y */
P_CHOICE, /* choice value */
P_SELECT, /* select BAR */
+ P_IMPLY, /* imply BAR */
P_RANGE, /* range 7..100 (for a symbol) */
P_ENV, /* value from environment variable */
P_SYMBOL, /* where a symbol is defined */