diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2021-03-14 04:48:35 +0900 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2021-04-14 15:22:49 +0900 |
commit | ab838577aaaeda12242b7f1e2da3f25c9b4cec3a (patch) | |
tree | b1bbaf922d615740557f15ecdf18bfd565264941 /scripts/kconfig/lexer.l | |
parent | f8f0d06438e5c810d1e13b5f8c2fed501fe36e9c (diff) | |
download | linux-stable-ab838577aaaeda12242b7f1e2da3f25c9b4cec3a.tar.gz linux-stable-ab838577aaaeda12242b7f1e2da3f25c9b4cec3a.tar.bz2 linux-stable-ab838577aaaeda12242b7f1e2da3f25c9b4cec3a.zip |
kconfig: remove allnoconfig_y option
Now that the only user, CONFIG_EMBEDDED has stopped using this option,
remove it entirely.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/kconfig/lexer.l')
-rw-r--r-- | scripts/kconfig/lexer.l | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/kconfig/lexer.l b/scripts/kconfig/lexer.l index e918950f94a6..08c96a6ffe05 100644 --- a/scripts/kconfig/lexer.l +++ b/scripts/kconfig/lexer.l @@ -91,7 +91,6 @@ n [A-Za-z0-9_-] [ \t]* /* whitespaces */ \\\n /* escaped new line */ \n return T_EOL; -"allnoconfig_y" return T_ALLNOCONFIG_Y; "bool" return T_BOOL; "choice" return T_CHOICE; "comment" return T_COMMENT; |