From a98a38a3d941d209b429b9a1b646506db0a6db72 Mon Sep 17 00:00:00 2001 From: Masahiro Yamada Date: Thu, 24 Jan 2019 19:47:30 +0900 Subject: [PATCH] kconfig: rename zconf.y to parser.y Use a more logical name. Signed-off-by: Masahiro Yamada Signed-off-by: Christian Lamparter --- config/expr.h | 2 +- config/lexer.l | 2 +- config/{zconf.y => parser.y} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename config/{zconf.y => parser.y} (100%) diff --git a/config/expr.h b/config/expr.h index 999edb6..8dde65b 100644 --- a/config/expr.h +++ b/config/expr.h @@ -172,7 +172,7 @@ struct symbol { * int "BAZ Value" * range 1..255 * - * Please, also check zconf.y:print_symbol() when modifying the + * Please, also check parser.y:print_symbol() when modifying the * list of property types! */ enum prop_type { diff --git a/config/lexer.l b/config/lexer.l index c52cce8..80665ae 100644 --- a/config/lexer.l +++ b/config/lexer.l @@ -15,7 +15,7 @@ #include #include "lkc.h" -#include "zconf.tab.h" +#include "parser.tab.h" #define YY_DECL static int yylex1(void) diff --git a/config/zconf.y b/config/parser.y similarity index 100% rename from config/zconf.y rename to config/parser.y -- 2.31.1