From: Greg Ungerer Date: Tue, 4 Mar 2008 06:35:04 +0000 (+1000) Subject: m68knommu: declare do_IRQ() X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e311f68a4e43ade048d7dbaa6b458fbe31114daf;p=linux-beck.git m68knommu: declare do_IRQ() Need a declaration of do_IRQ for the 68328 interrupt handling code. It is common to all m68knommu targets, so a common declaration makes sense. Signed-off-by: Greg Ungerer Signed-off-by: Linus Torvalds --- diff --git a/include/asm-m68knommu/machdep.h b/include/asm-m68knommu/machdep.h index 1cf26d240d83..de9f47a51cc2 100644 --- a/include/asm-m68knommu/machdep.h +++ b/include/asm-m68knommu/machdep.h @@ -21,4 +21,6 @@ extern void (*mach_power_off)( void ); extern void config_BSP(char *command, int len); +extern void do_IRQ(int irq, struct pt_regs *fp); + #endif /* _M68KNOMMU_MACHDEP_H */