diff options
Diffstat (limited to 'scripts/kconfig/lex.zconf.c_shipped')
-rw-r--r-- | scripts/kconfig/lex.zconf.c_shipped | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/kconfig/lex.zconf.c_shipped b/scripts/kconfig/lex.zconf.c_shipped index 0168141417f6..bedba89a87c6 100644 --- a/scripts/kconfig/lex.zconf.c_shipped +++ b/scripts/kconfig/lex.zconf.c_shipped | |||
@@ -1025,6 +1025,7 @@ YY_RULE_SETUP | |||
1025 | struct kconf_id *id = kconf_id_lookup(zconftext, zconfleng); | 1025 | struct kconf_id *id = kconf_id_lookup(zconftext, zconfleng); |
1026 | if (id && id->flags & TF_COMMAND) { | 1026 | if (id && id->flags & TF_COMMAND) { |
1027 | BEGIN(PARAM); | 1027 | BEGIN(PARAM); |
1028 | zconflval.id = id; | ||
1028 | return id->token; | 1029 | return id->token; |
1029 | } | 1030 | } |
1030 | alloc_string(zconftext, zconfleng); | 1031 | alloc_string(zconftext, zconfleng); |
@@ -1091,8 +1092,10 @@ case 19: | |||
1091 | YY_RULE_SETUP | 1092 | YY_RULE_SETUP |
1092 | { | 1093 | { |
1093 | struct kconf_id *id = kconf_id_lookup(zconftext, zconfleng); | 1094 | struct kconf_id *id = kconf_id_lookup(zconftext, zconfleng); |
1094 | if (id && id->flags & TF_PARAM) | 1095 | if (id && id->flags & TF_PARAM) { |
1096 | zconflval.id = id; | ||
1095 | return id->token; | 1097 | return id->token; |
1098 | } | ||
1096 | alloc_string(zconftext, zconfleng); | 1099 | alloc_string(zconftext, zconfleng); |
1097 | zconflval.string = text; | 1100 | zconflval.string = text; |
1098 | return T_WORD; | 1101 | return T_WORD; |