diff options
author | Ishizaki Kou <kou.ishizaki@toshiba.co.jp> | 2007-11-01 06:04:04 -0400 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2007-12-18 19:00:02 -0500 |
commit | 23666ebc15456e297448ed2b6745ac0bb5bd26a2 (patch) | |
tree | b48cda3ff83addad59a2ee6c5c5a5e7116db1fb0 | |
parent | a1ef4849fdca379cf51cbacd337e8fa742437d26 (diff) |
[POWERPC] cell: add missing '\n'
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>
-rw-r--r-- | arch/powerpc/platforms/cell/spu_manage.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/platforms/cell/spu_manage.c b/arch/powerpc/platforms/cell/spu_manage.c index 1b010707488d..b36ed62a39cc 100644 --- a/arch/powerpc/platforms/cell/spu_manage.c +++ b/arch/powerpc/platforms/cell/spu_manage.c | |||
@@ -345,7 +345,7 @@ static int __init of_create_spu(struct spu *spu, void *data) | |||
345 | } | 345 | } |
346 | ret = spu_map_interrupts_old(spu, spe); | 346 | ret = spu_map_interrupts_old(spu, spe); |
347 | if (ret) { | 347 | if (ret) { |
348 | printk(KERN_ERR "%s: could not map interrupts", | 348 | printk(KERN_ERR "%s: could not map interrupts\n", |
349 | spu->name); | 349 | spu->name); |
350 | goto out_unmap; | 350 | goto out_unmap; |
351 | } | 351 | } |
@@ -525,7 +525,7 @@ static int __init init_affinity(void) | |||
525 | if (of_flat_dt_is_compatible(root, "IBM,CPBW-1.0")) | 525 | if (of_flat_dt_is_compatible(root, "IBM,CPBW-1.0")) |
526 | init_affinity_qs20_harcoded(); | 526 | init_affinity_qs20_harcoded(); |
527 | else | 527 | else |
528 | printk("No affinity configuration found"); | 528 | printk("No affinity configuration found\n"); |
529 | } | 529 | } |
530 | 530 | ||
531 | return 0; | 531 | return 0; |