diff options
author | Masahiro Yamada | 2021-03-14 04:48:36 +0900 |
---|---|---|
committer | Masahiro Yamada | 2021-04-14 15:22:49 +0900 |
commit | 6dd85ff178cd76851e2184b13e545f5a88d1be30 (patch) | |
tree | a7743b360faf3a71d624d76a9564efeb1142da9d /scripts/kconfig/lexer.l | |
parent | ab838577aaaeda12242b7f1e2da3f25c9b4cec3a (diff) |
kconfig: change "modules" from sub-option to first-level attribute
Now "modules" is the only member of the "option" property.
Remove "option", and move "modules" to the top level property.
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 08c96a6ffe05..312cbad2d34d 100644 --- a/scripts/kconfig/lexer.l +++ b/scripts/kconfig/lexer.l @@ -112,7 +112,6 @@ n [A-Za-z0-9_-] "menuconfig" return T_MENUCONFIG; "modules" return T_MODULES; "on" return T_ON; -"option" return T_OPTION; "optional" return T_OPTIONAL; "prompt" return T_PROMPT; "range" return T_RANGE; |