diff options
Diffstat (limited to 'arch/microblaze/kernel/process.c')
-rw-r--r-- | arch/microblaze/kernel/process.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/microblaze/kernel/process.c b/arch/microblaze/kernel/process.c index 4201c743cc9f..812f1bf06c9e 100644 --- a/arch/microblaze/kernel/process.c +++ b/arch/microblaze/kernel/process.c | |||
@@ -15,6 +15,7 @@ | |||
15 | #include <linux/bitops.h> | 15 | #include <linux/bitops.h> |
16 | #include <asm/system.h> | 16 | #include <asm/system.h> |
17 | #include <asm/pgalloc.h> | 17 | #include <asm/pgalloc.h> |
18 | #include <asm/cacheflush.h> | ||
18 | 19 | ||
19 | void show_regs(struct pt_regs *regs) | 20 | void show_regs(struct pt_regs *regs) |
20 | { | 21 | { |
@@ -235,7 +236,9 @@ void start_thread(struct pt_regs *regs, unsigned long pc, unsigned long usp) | |||
235 | regs->pc = pc; | 236 | regs->pc = pc; |
236 | regs->r1 = usp; | 237 | regs->r1 = usp; |
237 | regs->pt_mode = 0; | 238 | regs->pt_mode = 0; |
239 | #ifdef CONFIG_MMU | ||
238 | regs->msr |= MSR_UMS; | 240 | regs->msr |= MSR_UMS; |
241 | #endif | ||
239 | } | 242 | } |
240 | 243 | ||
241 | #ifdef CONFIG_MMU | 244 | #ifdef CONFIG_MMU |