diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-12-15 16:38:02 +0100 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-01-21 16:49:29 +0100 |
commit | b92d804a51796b77c7b2b11881b2700eaac88114 (patch) | |
tree | 702b5dcc63540d027325d8c465e30779e40fda76 /scripts/kconfig/zconf.y | |
parent | kconfig: use bool instead of boolean for type definition attributes, again (diff) | |
download | linux-b92d804a51796b77c7b2b11881b2700eaac88114.tar.xz 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/zconf.y')
-rw-r--r-- | scripts/kconfig/zconf.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/zconf.y b/scripts/kconfig/zconf.y index 798d56cba4a9..db5fbd8ac686 100644 --- a/scripts/kconfig/zconf.y +++ b/scripts/kconfig/zconf.y @@ -639,7 +639,7 @@ static void print_symbol(FILE *out, struct menu *menu) fprintf(out, "\nconfig %s\n", sym->name); switch (sym->type) { case S_BOOLEAN: - fputs(" boolean\n", out); + fputs(" bool\n", out); break; case S_TRISTATE: fputs(" tristate\n", out); |