From: Paul Mundt Date: Tue, 18 May 2010 06:23:48 +0000 (+0900) Subject: sh64: provide a stub per_cpu_trap_init() definition. X-Git-Tag: v2.6.35-rc1~504^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dd2fdd264eaa616fab4cf80e89f83f4a2fc26288;p=profile%2Fivi%2Fkernel-x86-ivi.git sh64: provide a stub per_cpu_trap_init() definition. 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 --- diff --git a/arch/sh/kernel/traps_64.c b/arch/sh/kernel/traps_64.c index e3f92eb..e67e140 100644 --- 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. */ +}