microblaze: Fix missing bracket in printk
authorMichal Simek <michal.simek@xilinx.com>
Tue, 19 Nov 2013 13:27:33 +0000 (14:27 +0100)
committerMichal Simek <michal.simek@xilinx.com>
Mon, 27 Jan 2014 10:26:34 +0000 (11:26 +0100)
The error was introduced by the patch
"microblaze: Fix coding style issues"
(sha1: 6bd55f0bbaebb79b39e147aa864401fd0c94db82).

Error message:
arch/microblaze/kernel/setup.c: In function 'machine_early_init':
arch/microblaze/kernel/setup.c:177:3: error: 'pr_cont'
  undeclared (first use in this function)
arch/microblaze/kernel/setup.c:177:3: note: each undeclared
  identifier is reported only once for each function it appears in
arch/microblaze/kernel/setup.c:177:10: error: expected ';'
  before string constant
arch/microblaze/kernel/setup.c:177:33: error: expected statement
  before ')' token

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
arch/microblaze/kernel/setup.c

index 9d972d2bd924b1a791884344d3b1ccf7d7d19992..67cc4b282cc127fb48f2847d601adebab5aaf9e1 100644 (file)
@@ -175,7 +175,7 @@ void __init machine_early_init(const char *cmdline, unsigned int ram,
 #else
        if (!msr) {
                pr_info("!!!Your kernel not setup MSR instruction but ");
-               pr_cont"CPU have it %x\n", msr);
+               pr_cont("CPU have it %x\n", msr);
        }
 #endif