From: Keith Owens Date: Wed, 18 Oct 2006 05:36:49 +0000 (+1000) Subject: [IA64] Correct definition of handle_IPI X-Git-Tag: v3.12-rc1~31920^2~20^2~266^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=024e4f2c5175a482c234cf67ed22368d770bf78f;p=kernel%2Fkernel-generic.git [IA64] Correct definition of handle_IPI The declaration of handle_IPI in arch/ia64/kernel/smp.c was changed but not the definition of this function. Remove struct pt_regs from handle_IPI(). Signed-off-by: Keith Owens Signed-off-by: Tony Luck --- diff --git a/arch/ia64/kernel/smp.c b/arch/ia64/kernel/smp.c index 2763e79..6ab95ce 100644 --- a/arch/ia64/kernel/smp.c +++ b/arch/ia64/kernel/smp.c @@ -108,7 +108,7 @@ cpu_die(void) } irqreturn_t -handle_IPI (int irq, void *dev_id, struct pt_regs *regs) +handle_IPI (int irq, void *dev_id) { int this_cpu = get_cpu(); unsigned long *pending_ipis = &__ia64_per_cpu_var(ipi_operation);