diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-12-16 00:38:02 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-01-22 00:49:29 +0900 |
commit | b92d804a51796b77c7b2b11881b2700eaac88114 (patch) | |
tree | 702b5dcc63540d027325d8c465e30779e40fda76 /scripts/kconfig/symbol.c | |
parent | 1ae83c5c97bb90d7c272c03807b7c82911516610 (diff) | |
download | lwn-b92d804a51796b77c7b2b11881b2700eaac88114.tar.gz lwn-b92d804a51796b77c7b2b11881b2700eaac88114.zip |
kconfig: drop 'boolean' keyword
No more users of this keyword. Drop it according to the notice by
commit 6341e62b212a ("kconfig: use bool instead of boolean for type
definition attributes").
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Acked-by: Luis R. Rodriguez <mcgrof@kernel.org>
Diffstat (limited to 'scripts/kconfig/symbol.c')
-rw-r--r-- | scripts/kconfig/symbol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/symbol.c b/scripts/kconfig/symbol.c index 55c95e0bb48a..c9123ed2b791 100644 --- a/scripts/kconfig/symbol.c +++ b/scripts/kconfig/symbol.c @@ -77,7 +77,7 @@ const char *sym_type_name(enum symbol_type type) { switch (type) { case S_BOOLEAN: - return "boolean"; + return "bool"; case S_TRISTATE: return "tristate"; case S_INT: |