提交 d8106d2e 编写于 作者: I Ingo Molnar

x86, vm86: clean up invalid_vm86_irq()

Signed-off-by: NIngo Molnar <mingo@elte.hu>
上级 009eb3fe
......@@ -124,7 +124,13 @@
#define FIRST_VM86_IRQ 3
#define LAST_VM86_IRQ 15
#define invalid_vm86_irq(irq) ((irq) < 3 || (irq) > 15)
#ifndef __ASSEMBLY__
static inline int invalid_vm86_irq(int irq)
{
return irq < 3 || irq > 15;
}
#endif
/*
* Size the maximum number of interrupts.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册