aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/kconfig/expr.h
diff options
context:
space:
mode:
authorMasahiro Yamada <[email protected]>2019-12-17 04:14:22 +0000
committerMasahiro Yamada <[email protected]>2020-01-06 17:18:44 +0000
commit6397d96ba5a52c57ee1831a4ddc3aab01bb02048 (patch)
treece4dd71b3ab8070639985b22460fc3919572d964 /scripts/kconfig/expr.h
parentkconfig: remove 'prompt' argument from menu_add_prop() (diff)
downloadkernel-6397d96ba5a52c57ee1831a4ddc3aab01bb02048.tar.gz
kernel-6397d96ba5a52c57ee1831a4ddc3aab01bb02048.zip
kconfig: remove sym from struct property
struct property can reference to the symbol that it is associated with by prop->menu->sym. Fix up the one usage of prop->sym, and remove sym from struct property. Signed-off-by: Masahiro Yamada <[email protected]>
Diffstat (limited to 'scripts/kconfig/expr.h')
-rw-r--r--scripts/kconfig/expr.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/kconfig/expr.h b/scripts/kconfig/expr.h
index 017843c9a4f4..6e102a3b8bd5 100644
--- a/scripts/kconfig/expr.h
+++ b/scripts/kconfig/expr.h
@@ -191,7 +191,6 @@ enum prop_type {
struct property {
struct property *next; /* next property - null if last */
- struct symbol *sym; /* the symbol for which the property is associated */
enum prop_type type; /* type of property */
const char *text; /* the prompt value - P_PROMPT, P_MENU, P_COMMENT */
struct expr_value visible;