2012-03-05 11:49:29 +00:00
|
|
|
#ifndef __ASM_IRQ_H
|
|
|
|
|
#define __ASM_IRQ_H
|
|
|
|
|
|
|
|
|
|
#include <asm-generic/irq.h>
|
|
|
|
|
|
2014-12-04 06:29:35 +00:00
|
|
|
struct pt_regs;
|
|
|
|
|
|
2013-01-14 12:39:31 +00:00
|
|
|
extern void set_handle_irq(void (*handle_irq)(struct pt_regs *));
|
2012-03-05 11:49:29 +00:00
|
|
|
|
2015-11-20 11:25:04 -05:00
|
|
|
static inline int nr_legacy_irqs(void)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2012-03-05 11:49:29 +00:00
|
|
|
#endif
|