irq.h 217 字节
Newer Older
M
Marc Zyngier 已提交
1 2 3 4 5
#ifndef __ASM_IRQ_H
#define __ASM_IRQ_H

#include <asm-generic/irq.h>

6 7
struct pt_regs;

8
extern void set_handle_irq(void (*handle_irq)(struct pt_regs *));
M
Marc Zyngier 已提交
9

10 11 12 13 14
static inline int nr_legacy_irqs(void)
{
	return 0;
}

M
Marc Zyngier 已提交
15
#endif