From: viresh kumar Date: Mon, 29 Mar 2010 04:29:57 +0000 (+0100) Subject: ARM: 6000/1: removing compilation warning comming from X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=aedceb2a490bae56f9d7e80be480421e1cf22ce0;p=linux-beck.git ARM: 6000/1: removing compilation warning comming from irq.h is using struct pt_regs *. Due to this compilation warning is comming. Removing this warning by adding declaration of struct pt_regs. Signed-off-by: Viresh Kumar Signed-off-by: Russell King --- diff --git a/arch/arm/include/asm/irq.h b/arch/arm/include/asm/irq.h index 328f14a8b790..237282f7c762 100644 --- a/arch/arm/include/asm/irq.h +++ b/arch/arm/include/asm/irq.h @@ -17,6 +17,7 @@ #ifndef __ASSEMBLY__ struct irqaction; +struct pt_regs; extern void migrate_irqs(void); extern void asm_do_IRQ(unsigned int, struct pt_regs *);