summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2018-12-21 15:23:02 +0900
committerMasahiro Yamada <yamada.masahiro@socionext.com>2019-01-06 09:46:51 +0900
commita5003571e627789d8104ebdbe3ae24be41ea071a (patch)
tree283f75821cac0ee915205439ad20879ba549bcae
parent5c0ab286aeb1b7feeb50c138f2d9d80b3b04c276 (diff)
downloadlinux-0-day-a5003571e627789d8104ebdbe3ae24be41ea071a.tar.gz
linux-0-day-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>
-rw-r--r--scripts/kconfig/zconf.y1
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/kconfig/zconf.y b/scripts/kconfig/zconf.y
index 69409abc7dc29..60936c76865bf 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;