blob: 4fab5c3b2e15ca4ee294346535d14456145c520e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef _ASM_IRQ_H
#define _ASM_IRQ_H
/*
* IRQ line status macro IRQ_PER_CPU is used
*/
#define ARCH_HAS_IRQ_PER_CPU
#include <asm/arch/irq.h>
extern __inline__ int irq_canonicalize(int irq)
{
return irq;
}
#endif /* _ASM_IRQ_H */
|