irq.h 240 B

1234567891011121314151617
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __ASM_IRQ_H
  3. #define __ASM_IRQ_H
  4. #ifndef __ASSEMBLER__
  5. #include <asm-generic/irq.h>
  6. struct pt_regs;
  7. static inline int nr_legacy_irqs(void)
  8. {
  9. return 0;
  10. }
  11. #endif /* !__ASSEMBLER__ */
  12. #endif