projects
/
GitHub
/
MotorolaMobilityLLC
/
kernel-slsi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c77b29d
)
sh64: provide a stub per_cpu_trap_init() definition.
author
Paul Mundt
<lethal@linux-sh.org>
Tue, 18 May 2010 06:23:48 +0000
(15:23 +0900)
committer
Paul Mundt
<lethal@linux-sh.org>
Tue, 18 May 2010 06:23:48 +0000
(15:23 +0900)
This is needed to fix up the build at the moment. Gradually this will be
reworked to follow the 32-bit initialization path and deal with delayed
VBR initialization.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
arch/sh/kernel/traps_64.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/sh/kernel/traps_64.c
b/arch/sh/kernel/traps_64.c
index e3f92eb05ffdb684d5392121c2cdcf0096573988..e67e140bf1f682f6c41edeececa7b2b4165e7496 100644
(file)
--- a/
arch/sh/kernel/traps_64.c
+++ b/
arch/sh/kernel/traps_64.c
@@
-944,3
+944,8
@@
asmlinkage void do_debug_interrupt(unsigned long code, struct pt_regs *regs)
/* Clear all DEBUGINT causes */
poke_real_address_q(DM_EXP_CAUSE_PHY, 0x0);
}
+
+void __cpuinit per_cpu_trap_init(void)
+{
+ /* Nothing to do for now, VBR initialization later. */
+}