2005-04-16 18:20:36 -04:00
|
|
|
#ifndef _ASM_IRQ_H
|
|
|
|
#define _ASM_IRQ_H
|
|
|
|
|
2005-09-06 18:17:25 -04:00
|
|
|
/*
|
|
|
|
* IRQ line status macro IRQ_PER_CPU is used
|
|
|
|
*/
|
|
|
|
#define ARCH_HAS_IRQ_PER_CPU
|
|
|
|
|
2005-04-16 18:20:36 -04:00
|
|
|
#include <asm/arch/irq.h>
|
|
|
|
|
|
|
|
extern __inline__ int irq_canonicalize(int irq)
|
|
|
|
{
|
|
|
|
return irq;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* _ASM_IRQ_H */
|
|
|
|
|
|
|
|
|