diff options
author | Masahiro Yamada | 2018-12-21 15:23:02 +0900 |
---|---|---|
committer | Masahiro Yamada | 2019-01-06 09:46:51 +0900 |
commit | a5003571e627789d8104ebdbe3ae24be41ea071a (patch) | |
tree | 283f75821cac0ee915205439ad20879ba549bcae /scripts/kconfig | |
parent | 5c0ab286aeb1b7feeb50c138f2d9d80b3b04c276 (diff) |
kconfig: remove unused "file" field of yylval union
This has never been used.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'scripts/kconfig')
-rw-r--r-- | scripts/kconfig/zconf.y | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/kconfig/zconf.y b/scripts/kconfig/zconf.y index 69409abc7dc2..60936c76865b 100644 --- a/scripts/kconfig/zconf.y +++ b/scripts/kconfig/zconf.y @@ -35,7 +35,6 @@ static struct menu *current_menu, *current_entry; %union { char *string; - struct file *file; struct symbol *symbol; struct expr *expr; struct menu *menu; |