irq.h 397 字节
Newer Older
L
Linus Torvalds 已提交
1 2 3
#ifndef __ASM_ARM_IRQ_H
#define __ASM_ARM_IRQ_H

4
#include <mach/irqs.h>
L
Linus Torvalds 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21

#ifndef irq_canonicalize
#define irq_canonicalize(i)	(i)
#endif

#ifndef NR_IRQS
#define NR_IRQS	128
#endif

/*
 * Use this value to indicate lack of interrupt
 * capability
 */
#ifndef NO_IRQ
#define NO_IRQ	((unsigned int)(-1))
#endif

22 23
#ifndef __ASSEMBLY__
struct irqaction;
24
extern void migrate_irqs(void);
L
Linus Torvalds 已提交
25 26
#endif

27 28
#endif