2005-04-17 00:20:36 +02:00
|
|
|
#ifndef _ASM_IRQ_H
|
|
|
|
#define _ASM_IRQ_H
|
|
|
|
|
2005-09-07 00:17:25 +02:00
|
|
|
/*
|
|
|
|
* IRQ line status macro IRQ_PER_CPU is used
|
|
|
|
*/
|
|
|
|
#define ARCH_HAS_IRQ_PER_CPU
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <asm/arch/irq.h>
|
|
|
|
|
2005-11-07 09:58:44 +01:00
|
|
|
static inline int irq_canonicalize(int irq)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
return irq;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* _ASM_IRQ_H */
|
|
|
|
|
|
|
|
|