mirror of
https://github.com/torvalds/linux.git
synced 2024-11-07 12:41:55 +00:00
96a388de5d
Move the headers to include/asm-x86 and fixup the header install make rules Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Ingo Molnar <mingo@elte.hu>
17 lines
365 B
C
17 lines
365 B
C
#ifndef _ASM_IRQ_VECTORS_LIMITS_H
|
|
#define _ASM_IRQ_VECTORS_LIMITS_H
|
|
|
|
#if defined(CONFIG_X86_IO_APIC) || defined(CONFIG_PARAVIRT)
|
|
#define NR_IRQS 224
|
|
# if (224 >= 32 * NR_CPUS)
|
|
# define NR_IRQ_VECTORS NR_IRQS
|
|
# else
|
|
# define NR_IRQ_VECTORS (32 * NR_CPUS)
|
|
# endif
|
|
#else
|
|
#define NR_IRQS 16
|
|
#define NR_IRQ_VECTORS NR_IRQS
|
|
#endif
|
|
|
|
#endif /* _ASM_IRQ_VECTORS_LIMITS_H */
|