Skip to content

Commit

Permalink
[POWERPC] cell: add missing '\n'
Browse files Browse the repository at this point in the history
Two printk() calls were missing the terminating '\n'.

Signed-off-by: Kou Ishizaki <kou.ishizaki@toshiba.co.jp>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
  • Loading branch information
Ishizaki Kou authored and Arnd Bergmann committed Dec 19, 2007
1 parent a1ef484 commit 23666eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/powerpc/platforms/cell/spu_manage.c
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ static int __init of_create_spu(struct spu *spu, void *data)
}
ret = spu_map_interrupts_old(spu, spe);
if (ret) {
printk(KERN_ERR "%s: could not map interrupts",
printk(KERN_ERR "%s: could not map interrupts\n",
spu->name);
goto out_unmap;
}
Expand Down Expand Up @@ -525,7 +525,7 @@ static int __init init_affinity(void)
if (of_flat_dt_is_compatible(root, "IBM,CPBW-1.0"))
init_affinity_qs20_harcoded();
else
printk("No affinity configuration found");
printk("No affinity configuration found\n");
}

return 0;
Expand Down

0 comments on commit 23666eb

Please sign in to comment.