blob: 2ba8ae3c8e963d51a88e8c9652fb777bd9cfabea [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IRQ subsystem internal functions and variables:
3 */
4
5extern int noirqdebug;
6
Thomas Gleixner6a6de9e2006-06-29 02:24:51 -07007/* Set default functions for irq_chip structures: */
8extern void irq_chip_set_defaults(struct irq_chip *chip);
9
10/* Set default handler: */
11extern void compat_irq_chip_set_default_handler(struct irq_desc *desc);
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#ifdef CONFIG_PROC_FS
14extern void register_irq_proc(unsigned int irq);
15extern void register_handler_proc(unsigned int irq, struct irqaction *action);
16extern void unregister_handler_proc(unsigned int irq, struct irqaction *action);
17#else
18static inline void register_irq_proc(unsigned int irq) { }
19static inline void register_handler_proc(unsigned int irq,
20 struct irqaction *action) { }
21static inline void unregister_handler_proc(unsigned int irq,
22 struct irqaction *action) { }
23#endif
24