diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-02-26 22:50:22 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-02-26 22:50:22 -0500 |
commit | 2b37e9a28afbd11f899738e912fb4a617a74b462 (patch) | |
tree | 9494e8bfed44e08f47d4b4c6007dc189f7c7896f /arch/microblaze/kernel/process.c | |
parent | a9a07d40bc9c57881555b64fe8bf66fd28e2f13a (diff) | |
parent | 711e5b4520986380700e6f095608021cf087170e (diff) |
Merge branch 'next' of git://git.monstr.eu/linux-2.6-microblaze
Pull microblaze update from Michal Simek:
"Microblaze changes.
After my discussion with Arnd I have also added there asm-generic io
patch which is Acked by him and Geert."
* 'next' of git://git.monstr.eu/linux-2.6-microblaze:
asm-generic: io: Fix ioread16/32be and iowrite16/32be
microblaze: Do not use module.h in files which are not modules
microblaze: Fix coding style issues
microblaze: Add missing return from debugfs_tlb
microblaze: Makefile clean
microblaze: Add .gitignore entries for auto-generated files
microblaze: Fix strncpy_from_user macro
Diffstat (limited to 'arch/microblaze/kernel/process.c')
-rw-r--r-- | arch/microblaze/kernel/process.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/arch/microblaze/kernel/process.c b/arch/microblaze/kernel/process.c index 08f87343f8d0..fa0ea609137c 100644 --- a/arch/microblaze/kernel/process.c +++ b/arch/microblaze/kernel/process.c | |||
@@ -8,36 +8,36 @@ | |||
8 | * for more details. | 8 | * for more details. |
9 | */ | 9 | */ |
10 | 10 | ||
11 | #include <linux/module.h> | 11 | #include <linux/export.h> |
12 | #include <linux/sched.h> | 12 | #include <linux/sched.h> |
13 | #include <linux/pm.h> | 13 | #include <linux/pm.h> |
14 | #include <linux/tick.h> | 14 | #include <linux/tick.h> |
15 | #include <linux/bitops.h> | 15 | #include <linux/bitops.h> |
16 | #include <linux/ptrace.h> | 16 | #include <linux/ptrace.h> |
17 | #include <asm/pgalloc.h> | 17 | #include <asm/pgalloc.h> |
18 | #include <asm/uaccess.h> /* for USER_DS macros */ | 18 | #include <linux/uaccess.h> /* for USER_DS macros */ |
19 | #include <asm/cacheflush.h> | 19 | #include <asm/cacheflush.h> |
20 | 20 | ||
21 | void show_regs(struct pt_regs *regs) | 21 | void show_regs(struct pt_regs *regs) |
22 | { | 22 | { |
23 | printk(KERN_INFO " Registers dump: mode=%X\r\n", regs->pt_mode); | 23 | pr_info(" Registers dump: mode=%X\r\n", regs->pt_mode); |
24 | printk(KERN_INFO " r1=%08lX, r2=%08lX, r3=%08lX, r4=%08lX\n", | 24 | pr_info(" r1=%08lX, r2=%08lX, r3=%08lX, r4=%08lX\n", |
25 | regs->r1, regs->r2, regs->r3, regs->r4); | 25 | regs->r1, regs->r2, regs->r3, regs->r4); |
26 | printk(KERN_INFO " r5=%08lX, r6=%08lX, r7=%08lX, r8=%08lX\n", | 26 | pr_info(" r5=%08lX, r6=%08lX, r7=%08lX, r8=%08lX\n", |
27 | regs->r5, regs->r6, regs->r7, regs->r8); | 27 | regs->r5, regs->r6, regs->r7, regs->r8); |
28 | printk(KERN_INFO " r9=%08lX, r10=%08lX, r11=%08lX, r12=%08lX\n", | 28 | pr_info(" r9=%08lX, r10=%08lX, r11=%08lX, r12=%08lX\n", |
29 | regs->r9, regs->r10, regs->r11, regs->r12); | 29 | regs->r9, regs->r10, regs->r11, regs->r12); |
30 | printk(KERN_INFO " r13=%08lX, r14=%08lX, r15=%08lX, r16=%08lX\n", | 30 | pr_info(" r13=%08lX, r14=%08lX, r15=%08lX, r16=%08lX\n", |
31 | regs->r13, regs->r14, regs->r15, regs->r16); | 31 | regs->r13, regs->r14, regs->r15, regs->r16); |
32 | printk(KERN_INFO " r17=%08lX, r18=%08lX, r19=%08lX, r20=%08lX\n", | 32 | pr_info(" r17=%08lX, r18=%08lX, r19=%08lX, r20=%08lX\n", |
33 | regs->r17, regs->r18, regs->r19, regs->r20); | 33 | regs->r17, regs->r18, regs->r19, regs->r20); |
34 | printk(KERN_INFO " r21=%08lX, r22=%08lX, r23=%08lX, r24=%08lX\n", | 34 | pr_info(" r21=%08lX, r22=%08lX, r23=%08lX, r24=%08lX\n", |
35 | regs->r21, regs->r22, regs->r23, regs->r24); | 35 | regs->r21, regs->r22, regs->r23, regs->r24); |
36 | printk(KERN_INFO " r25=%08lX, r26=%08lX, r27=%08lX, r28=%08lX\n", | 36 | pr_info(" r25=%08lX, r26=%08lX, r27=%08lX, r28=%08lX\n", |
37 | regs->r25, regs->r26, regs->r27, regs->r28); | 37 | regs->r25, regs->r26, regs->r27, regs->r28); |
38 | printk(KERN_INFO " r29=%08lX, r30=%08lX, r31=%08lX, rPC=%08lX\n", | 38 | pr_info(" r29=%08lX, r30=%08lX, r31=%08lX, rPC=%08lX\n", |
39 | regs->r29, regs->r30, regs->r31, regs->pc); | 39 | regs->r29, regs->r30, regs->r31, regs->pc); |
40 | printk(KERN_INFO " msr=%08lX, ear=%08lX, esr=%08lX, fsr=%08lX\n", | 40 | pr_info(" msr=%08lX, ear=%08lX, esr=%08lX, fsr=%08lX\n", |
41 | regs->msr, regs->ear, regs->esr, regs->fsr); | 41 | regs->msr, regs->ear, regs->esr, regs->fsr); |
42 | } | 42 | } |
43 | 43 | ||