blob: 8e8d30684392b1065b0c5d1f65e7715e4028331c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef __ASM_IRQ_H
#define __ASM_IRQ_H
#include <asm-generic/irq.h>
struct pt_regs;
extern void set_handle_irq(void (*handle_irq)(struct pt_regs *));
static inline int nr_legacy_irqs(void)
{
return 0;
}
#endif
|