diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2005-10-01 08:14:58 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-10-29 14:32:33 -0400 |
commit | 6aaf7786ed02da7797432708fbcdd242f9c0764e (patch) | |
tree | 0cbece6a0ec2b706dfa8774e2b313ded86c5bbd0 /arch/mips/sibyte/swarm/setup.c | |
parent | 46dc3a4a098c65551d5f364e1c56331961400314 (diff) |
No need to explicitly call __read_64bit_c0_split; __read_64bit_c0_register
will do that itself iff needed. Fix format string.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/sibyte/swarm/setup.c')
-rw-r--r-- | arch/mips/sibyte/swarm/setup.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/arch/mips/sibyte/swarm/setup.c b/arch/mips/sibyte/swarm/setup.c index b8be07f061ee..f8963de1bbf4 100644 --- a/arch/mips/sibyte/swarm/setup.c +++ b/arch/mips/sibyte/swarm/setup.c | |||
@@ -73,13 +73,8 @@ int swarm_be_handler(struct pt_regs *regs, int is_fixup) | |||
73 | { | 73 | { |
74 | if (!is_fixup && (regs->cp0_cause & 4)) { | 74 | if (!is_fixup && (regs->cp0_cause & 4)) { |
75 | /* Data bus error - print PA */ | 75 | /* Data bus error - print PA */ |
76 | #ifdef CONFIG_64BIT | 76 | printk("DBE physical address: %010Lx\n", |
77 | printk("DBE physical address: %010lx\n", | ||
78 | __read_64bit_c0_register($26, 1)); | 77 | __read_64bit_c0_register($26, 1)); |
79 | #else | ||
80 | printk("DBE physical address: %010llx\n", | ||
81 | __read_64bit_c0_split($26, 1)); | ||
82 | #endif | ||
83 | } | 78 | } |
84 | return (is_fixup ? MIPS_BE_FIXUP : MIPS_BE_FATAL); | 79 | return (is_fixup ? MIPS_BE_FIXUP : MIPS_BE_FATAL); |
85 | } | 80 | } |