MIPS: Fix up inconsistency in panic() string argument.

Panic() invokes printk() to add a \n internally, so panic arguments should
not themselves end in \n.  Panic invocations in arch/mips and elsewhere
are inconsistently sometimes terminating in \n, sometimes not.

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
Ralf Baechle
2011-11-17 15:07:31 +00:00
parent 864c6c22e9
commit ab75dc02c1
19 changed files with 40 additions and 40 deletions

View File

@@ -223,7 +223,7 @@ static void __cpuinit probe_octeon(void)
break;
default:
panic("Unsupported Cavium Networks CPU type\n");
panic("Unsupported Cavium Networks CPU type");
break;
}