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/menu.c | |
parent | 1ae83c5c97bb90d7c272c03807b7c82911516610 (diff) | |
download | linux-b92d804a51796b77c7b2b11881b2700eaac88114.tar.gz linux-b92d804a51796b77c7b2b11881b2700eaac88114.tar.bz2 linux-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/menu.c')
-rw-r--r-- | scripts/kconfig/menu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/kconfig/menu.c b/scripts/kconfig/menu.c index 93fe2fb841db..47bec3434fef 100644 --- a/scripts/kconfig/menu.c +++ b/scripts/kconfig/menu.c @@ -269,13 +269,13 @@ static void sym_check_prop(struct symbol *sym) if (sym->type != S_BOOLEAN && sym->type != S_TRISTATE) prop_warn(prop, "config symbol '%s' uses %s, but is " - "not boolean or tristate", sym->name, use); + "not bool or tristate", sym->name, use); else if (sym2->type != S_UNKNOWN && sym2->type != S_BOOLEAN && sym2->type != S_TRISTATE) prop_warn(prop, "'%s' has wrong type. '%s' only " - "accept arguments of boolean and " + "accept arguments of bool and " "tristate type", sym2->name, use); break; case P_RANGE: |