internals.h 581 B

123456789101112131415161718
  1. /*
  2. * IRQ subsystem internal functions and variables:
  3. */
  4. extern int noirqdebug;
  5. #ifdef CONFIG_PROC_FS
  6. extern void register_irq_proc(unsigned int irq);
  7. extern void register_handler_proc(unsigned int irq, struct irqaction *action);
  8. extern void unregister_handler_proc(unsigned int irq, struct irqaction *action);
  9. #else
  10. static inline void register_irq_proc(unsigned int irq) { }
  11. static inline void register_handler_proc(unsigned int irq,
  12. struct irqaction *action) { }
  13. static inline void unregister_handler_proc(unsigned int irq,
  14. struct irqaction *action) { }
  15. #endif