diff options
author | Joe Perches <joe@perches.com> | 2010-03-26 19:27:51 -0700 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2010-05-22 14:19:15 -0400 |
commit | db52ecc2953d932b2fc1c62e585231659edd1d98 (patch) | |
tree | 2862ed9c5306ed45de275d9d033c1ad170bff29d /arch | |
parent | efc5863eb52a04134869f5ceb5f81a6fe9b47469 (diff) | |
download | op-kernel-dev-db52ecc2953d932b2fc1c62e585231659edd1d98.zip op-kernel-dev-db52ecc2953d932b2fc1c62e585231659edd1d98.tar.gz |
Blackfin: SMP: fix continuation lines
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/blackfin/mach-common/smp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/blackfin/mach-common/smp.c b/arch/blackfin/mach-common/smp.c index 7cecbaf..a17107a 100644 --- a/arch/blackfin/mach-common/smp.c +++ b/arch/blackfin/mach-common/smp.c @@ -170,8 +170,8 @@ static irqreturn_t ipi_handler(int irq, void *dev_instance) kfree(msg); break; default: - printk(KERN_CRIT "CPU%u: Unknown IPI message \ - 0x%lx\n", cpu, msg->type); + printk(KERN_CRIT "CPU%u: Unknown IPI message 0x%lx\n", + cpu, msg->type); kfree(msg); break; } |