hw_irq.h 349 B

1234567891011121314151617
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Nothing to see here yet
  4. */
  5. #ifndef _ARCH_ARM_HW_IRQ_H
  6. #define _ARCH_ARM_HW_IRQ_H
  7. static inline void ack_bad_irq(int irq)
  8. {
  9. extern unsigned long irq_err_count;
  10. irq_err_count++;
  11. pr_crit("unexpected IRQ trap at vector %02x\n", irq);
  12. }
  13. #define ARCH_IRQ_INIT_FLAGS (IRQ_NOREQUEST | IRQ_NOPROBE)
  14. #endif