internals.h 793 字节
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6
/*
 * IRQ subsystem internal functions and variables:
 */

extern int noirqdebug;

T
Thomas Gleixner 已提交
7 8 9 10 11 12
/* Set default functions for irq_chip structures: */
extern void irq_chip_set_defaults(struct irq_chip *chip);

/* Set default handler: */
extern void compat_irq_chip_set_default_handler(struct irq_desc *desc);

L
Linus Torvalds 已提交
13 14 15 16 17 18 19 20 21 22 23 24
#ifdef CONFIG_PROC_FS
extern void register_irq_proc(unsigned int irq);
extern void register_handler_proc(unsigned int irq, struct irqaction *action);
extern void unregister_handler_proc(unsigned int irq, struct irqaction *action);
#else
static inline void register_irq_proc(unsigned int irq) { }
static inline void register_handler_proc(unsigned int irq,
					 struct irqaction *action) { }
static inline void unregister_handler_proc(unsigned int irq,
					   struct irqaction *action) { }
#endif