Commit 6397d96b authored by Masahiro Yamada's avatar Masahiro Yamada

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: default avatarMasahiro Yamada <masahiroy@kernel.org>
parent 2ffeef61
...@@ -191,7 +191,6 @@ enum prop_type { ...@@ -191,7 +191,6 @@ enum prop_type {
struct property { struct property {
struct property *next; /* next property - null if last */ 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 */ enum prop_type type; /* type of property */
const char *text; /* the prompt value - P_PROMPT, P_MENU, P_COMMENT */ const char *text; /* the prompt value - P_PROMPT, P_MENU, P_COMMENT */
struct expr_value visible; struct expr_value visible;
......
...@@ -660,7 +660,7 @@ static void print_symbol(FILE *out, struct menu *menu) ...@@ -660,7 +660,7 @@ static void print_symbol(FILE *out, struct menu *menu)
break; break;
case P_SYMBOL: case P_SYMBOL:
fputs( " symbol ", out); fputs( " symbol ", out);
fprintf(out, "%s\n", prop->sym->name); fprintf(out, "%s\n", prop->menu->sym->name);
break; break;
default: default:
fprintf(out, " unknown prop %d!\n", prop->type); fprintf(out, " unknown prop %d!\n", prop->type);
......
...@@ -1281,7 +1281,6 @@ struct property *prop_alloc(enum prop_type type, struct symbol *sym) ...@@ -1281,7 +1281,6 @@ struct property *prop_alloc(enum prop_type type, struct symbol *sym)
prop = xmalloc(sizeof(*prop)); prop = xmalloc(sizeof(*prop));
memset(prop, 0, sizeof(*prop)); memset(prop, 0, sizeof(*prop));
prop->type = type; prop->type = type;
prop->sym = sym;
prop->file = current_file; prop->file = current_file;
prop->lineno = zconf_lineno(); prop->lineno = zconf_lineno();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment