Skip to content

Commit

Permalink
trivial: add missing printk loglevel in start_kernel
Browse files Browse the repository at this point in the history
Add missing printk loglevel in start_kernel

Signed-off-by: Ron Lee <[email protected]>
Signed-off-by: Jiri Kosina <[email protected]>
  • Loading branch information
Ron Lee authored and Jiri Kosina committed Jan 6, 2009
1 parent 8e6bdb7 commit 24d431d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion init/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,8 @@ asmlinkage void __init start_kernel(void)
sched_clock_init();
profile_init();
if (!irqs_disabled())
printk("start_kernel(): bug: interrupts were enabled early\n");
printk(KERN_CRIT "start_kernel(): bug: interrupts were "
"enabled early\n");
early_boot_irqs_on();
local_irq_enable();

Expand Down

0 comments on commit 24d431d

Please sign in to comment.