The patch titled Subject: lib/Kconfig: use bool instead of boolean has been added to the -mm tree. Its filename is lib-kconfig-use-bool-instead-of-boolean.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/lib-kconfig-use-bool-instead-of-boolean.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/lib-kconfig-use-bool-instead-of-boolean.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Christoph Jaeger <cj@xxxxxxxxx> Subject: lib/Kconfig: use bool instead of boolean Keyword 'boolean' for type definition attributes is considered deprecated and, therefore, should not be used anymore. See http://lkml.kernel.org/r/cover.1418003065.git.cj@xxxxxxxxx See http://lkml.kernel.org/r/1419108071-11607-1-git-send-email-cj@xxxxxxxxx Signed-off-by: Christoph Jaeger <cj@xxxxxxxxx> Cc: Russell King <linux@xxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN lib/Kconfig~lib-kconfig-use-bool-instead-of-boolean lib/Kconfig --- a/lib/Kconfig~lib-kconfig-use-bool-instead-of-boolean +++ a/lib/Kconfig @@ -14,7 +14,7 @@ config BITREVERSE tristate config HAVE_ARCH_BITREVERSE - boolean + bool default n depends on BITREVERSE help _ Patches currently in -mm which might be from cj@xxxxxxxxx are checkpatch-add-check-for-keyword-boolean-in-kconfig-definitions.patch checkpatch-add-likely-unlikely-comparison-misuse-test.patch linux-next.patch lib-kconfig-use-bool-instead-of-boolean.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html