aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86/include/asm/irq_vectors.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/arch/x86/include/asm/irq_vectors.h b/arch/x86/include/asm/irq_vectors.h
index 41e2450e13bd..b07278c55e9e 100644
--- a/arch/x86/include/asm/irq_vectors.h
+++ b/arch/x86/include/asm/irq_vectors.h
@@ -124,7 +124,13 @@
124 124
125#define FIRST_VM86_IRQ 3 125#define FIRST_VM86_IRQ 3
126#define LAST_VM86_IRQ 15 126#define LAST_VM86_IRQ 15
127#define invalid_vm86_irq(irq) ((irq) < 3 || (irq) > 15) 127
128#ifndef __ASSEMBLY__
129static inline int invalid_vm86_irq(int irq)
130{
131 return irq < 3 || irq > 15;
132}
133#endif
128 134
129/* 135/*
130 * Size the maximum number of interrupts. 136 * Size the maximum number of interrupts.