diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-12-11 12:00:59 +0100 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-12-21 16:25:34 +0100 |
commit | 3c8f317d4cf15e7a67457cfdd1e63182a34bcb69 (patch) | |
tree | 33010572a0d3dcf96be4c70e5d18b8e384451ada /scripts/kconfig/lkc.h | |
parent | kconfig: remove redundant token defines (diff) | |
download | linux-3c8f317d4cf15e7a67457cfdd1e63182a34bcb69.tar.xz linux-3c8f317d4cf15e7a67457cfdd1e63182a34bcb69.zip |
kconfig: use distinct tokens for type and default properties
This commit removes kconf_id::stype to prepare for the entire
removal of kconf_id.c
To simplify the lexer, I want keywords straight-mapped to tokens.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'scripts/kconfig/lkc.h')
-rw-r--r-- | scripts/kconfig/lkc.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/kconfig/lkc.h b/scripts/kconfig/lkc.h index 9eb7c837cd8f..b6bbcd1dda2b 100644 --- a/scripts/kconfig/lkc.h +++ b/scripts/kconfig/lkc.h @@ -50,7 +50,6 @@ struct kconf_id { const char *name; int token; unsigned int flags; - enum symbol_type stype; }; extern int yylineno; |