irq.h 554 B

1234567891011121314151617181920
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /******************************************************************************
  3. * arch/ia64/include/asm/native/irq.h
  4. *
  5. * Copyright (c) 2008 Isaku Yamahata <yamahata at valinux co jp>
  6. * VA Linux Systems Japan K.K.
  7. */
  8. #ifndef _ASM_IA64_NATIVE_IRQ_H
  9. #define _ASM_IA64_NATIVE_IRQ_H
  10. #define NR_VECTORS 256
  11. #if (NR_VECTORS + 32 * NR_CPUS) < 1024
  12. #define IA64_NATIVE_NR_IRQS (NR_VECTORS + 32 * NR_CPUS)
  13. #else
  14. #define IA64_NATIVE_NR_IRQS 1024
  15. #endif
  16. #endif /* _ASM_IA64_NATIVE_IRQ_H */