diff options
author | Michal Simek <michal.simek@xilinx.com> | 2013-11-19 08:27:33 -0500 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2014-01-27 05:26:34 -0500 |
commit | eae38104b2e56256930a65f0da45af98ee809f5a (patch) | |
tree | c0fe48b4a0b34aa4cbac17cb979a3dcdd60ba755 /arch/microblaze | |
parent | 52ade599e3440d188c20e57c3e34934784f9cb52 (diff) |
microblaze: Fix missing bracket in printk
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>
Diffstat (limited to 'arch/microblaze')
-rw-r--r-- | arch/microblaze/kernel/setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/microblaze/kernel/setup.c b/arch/microblaze/kernel/setup.c index 9d972d2bd924..67cc4b282cc1 100644 --- a/arch/microblaze/kernel/setup.c +++ b/arch/microblaze/kernel/setup.c | |||
@@ -175,7 +175,7 @@ void __init machine_early_init(const char *cmdline, unsigned int ram, | |||
175 | #else | 175 | #else |
176 | if (!msr) { | 176 | if (!msr) { |
177 | pr_info("!!!Your kernel not setup MSR instruction but "); | 177 | pr_info("!!!Your kernel not setup MSR instruction but "); |
178 | pr_cont"CPU have it %x\n", msr); | 178 | pr_cont("CPU have it %x\n", msr); |
179 | } | 179 | } |
180 | #endif | 180 | #endif |
181 | 181 | ||