The patch titled Subject: kernel/printk/printk.c: fix bool assignements has been added to the -mm tree. Its filename is kernel-printk-fix-bool-assignements.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/kernel-printk-fix-bool-assignements.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/kernel-printk-fix-bool-assignements.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: Neil Zhang <zhangwm@xxxxxxxxxxx> Subject: kernel/printk/printk.c: fix bool assignements Fix coccinelle warnings. Signed-off-by: Neil Zhang <zhangwm@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/printk/printk.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff -puN kernel/printk/printk.c~kernel-printk-fix-bool-assignements kernel/printk/printk.c --- a/kernel/printk/printk.c~kernel-printk-fix-bool-assignements +++ a/kernel/printk/printk.c @@ -919,7 +919,7 @@ static bool __read_mostly ignore_logleve static int __init ignore_loglevel_setup(char *str) { - ignore_loglevel = 1; + ignore_loglevel = true; pr_info("debug: ignoring loglevel setting.\n"); return 0; @@ -2005,12 +2005,12 @@ int update_console_cmdline(char *name, i return -1; } -bool console_suspend_enabled = 1; +bool console_suspend_enabled = true; EXPORT_SYMBOL(console_suspend_enabled); static int __init console_suspend_disable(char *str) { - console_suspend_enabled = 0; + console_suspend_enabled = false; return 1; } __setup("no_console_suspend", console_suspend_disable); _ Patches currently in -mm which might be from zhangwm@xxxxxxxxxxx are kernel-printk-fix-bool-assignements.patch linux-next.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