kernel/printk/printk.c: fix bool assignements
Fix coccinelle warnings. Signed-off-by: Neil Zhang <zhangwm@marvell.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
5874af2003
commit
d25d9feced
|
@ -919,7 +919,7 @@ static bool __read_mostly ignore_loglevel;
|
|||
|
||||
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, int idx, char *name_new, int idx_new, cha
|
|||
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);
|
||||
|
|
Loading…
Reference in New Issue