Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e31b88ba authored by Dave Jones's avatar Dave Jones Committed by Linus Torvalds
Browse files

[PATCH] x86: missing printk newline in apic boot option parser



Missing newline in printk.

Signed-off-by: default avatarDave Jones <davej@redhat.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent f8af095d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -721,7 +721,7 @@ static int __init apic_set_verbosity(char *str)
		apic_verbosity = APIC_VERBOSE;
	else
		printk(KERN_WARNING "APIC Verbosity level %s not recognised"
				" use apic=verbose or apic=debug", str);
				" use apic=verbose or apic=debug\n", str);

	return 0;
}