2005-04-17 00:20:36 +02:00
|
|
|
#ifndef __ASM_ARM_IRQ_H
|
|
|
|
#define __ASM_ARM_IRQ_H
|
|
|
|
|
2008-08-05 17:14:15 +02:00
|
|
|
#include <mach/irqs.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#ifndef irq_canonicalize
|
|
|
|
#define irq_canonicalize(i) (i)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Use this value to indicate lack of interrupt
|
|
|
|
* capability
|
|
|
|
*/
|
|
|
|
#ifndef NO_IRQ
|
|
|
|
#define NO_IRQ ((unsigned int)(-1))
|
|
|
|
#endif
|
|
|
|
|
2006-12-27 22:56:44 +01:00
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
struct irqaction;
|
2005-11-02 23:24:33 +01:00
|
|
|
extern void migrate_irqs(void);
|
2008-09-06 11:56:27 +02:00
|
|
|
|
|
|
|
extern void asm_do_IRQ(unsigned int, struct pt_regs *);
|
|
|
|
void init_IRQ(void);
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#endif
|
|
|
|
|
2006-12-27 22:56:44 +01:00
|
|
|
#endif
|
|
|
|
|