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

Commit 23666ebc authored by Ishizaki Kou's avatar Ishizaki Kou Committed by Arnd Bergmann
Browse files

[POWERPC] cell: add missing '\n'



Two printk() calls were missing the terminating '\n'.

Signed-off-by: default avatarKou Ishizaki <kou.ishizaki@toshiba.co.jp>
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
parent a1ef4849
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;
		}
@@ -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;