irq.h 240 字节
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
M
Marc Zyngier 已提交
2 3 4
#ifndef __ASM_IRQ_H
#define __ASM_IRQ_H

5 6
#ifndef __ASSEMBLER__

M
Marc Zyngier 已提交
7 8
#include <asm-generic/irq.h>

9 10
struct pt_regs;

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

16
#endif /* !__ASSEMBLER__ */
M
Marc Zyngier 已提交
17
#endif