diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-12-21 09:23:02 +0300 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-01-06 03:46:51 +0300 |
commit | a5003571e627789d8104ebdbe3ae24be41ea071a (patch) | |
tree | 283f75821cac0ee915205439ad20879ba549bcae /scripts | |
parent | 5c0ab286aeb1b7feeb50c138f2d9d80b3b04c276 (diff) | |
download | linux-a5003571e627789d8104ebdbe3ae24be41ea071a.tar.xz |
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')
-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; |