Skip to content

Commit

Permalink
[PATCH] ARM SMP: Messages about CPUs should be prefixed by CPU%u
Browse files Browse the repository at this point in the history
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Russell King committed Jun 19, 2005
1 parent ea4423c commit 0908db2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion arch/arm/kernel/smp.c
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,8 @@ int __init __cpu_up(unsigned int cpu)
pgd_free(pgd);

if (ret) {
printk(KERN_CRIT "cpu_up: processor %d failed to boot\n", cpu);
printk(KERN_CRIT "CPU%u: processor failed to boot\n", cpu);

/*
* FIXME: We need to clean up the new idle thread. --rmk
*/
Expand Down

0 comments on commit 0908db2

Please sign in to comment.