aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/irq/internals.h
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2010-09-29 20:46:07 -0400
committerThomas Gleixner <tglx@linutronix.de>2010-10-12 10:39:07 -0400
commit13bfe99e09123ef5edb6acb81ba337d2db600b53 (patch)
treef96f5be41c90e1ab437bb40a02a8f137deb9e3ab /kernel/irq/internals.h
parent1f5a5b87f78fade3ae48dfd55e8765d1d622ea4e (diff)
genirq: Prepare proc for real sparse irq support
/proc/irq never removes any entries, but when irq descriptors can be freed for real this is necessary. Otherwise we'd reference a freed descriptor in /proc/irq/N Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/irq/internals.h')
-rw-r--r--kernel/irq/internals.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/irq/internals.h b/kernel/irq/internals.h
index e281e45fbb55..8eb01e379ccc 100644
--- a/kernel/irq/internals.h
+++ b/kernel/irq/internals.h
@@ -32,10 +32,12 @@ void replace_irq_desc(unsigned int irq, struct irq_desc *desc);
32 32
33#ifdef CONFIG_PROC_FS 33#ifdef CONFIG_PROC_FS
34extern void register_irq_proc(unsigned int irq, struct irq_desc *desc); 34extern void register_irq_proc(unsigned int irq, struct irq_desc *desc);
35extern void unregister_irq_proc(unsigned int irq, struct irq_desc *desc);
35extern void register_handler_proc(unsigned int irq, struct irqaction *action); 36extern void register_handler_proc(unsigned int irq, struct irqaction *action);
36extern void unregister_handler_proc(unsigned int irq, struct irqaction *action); 37extern void unregister_handler_proc(unsigned int irq, struct irqaction *action);
37#else 38#else
38static inline void register_irq_proc(unsigned int irq, struct irq_desc *desc) { } 39static inline void register_irq_proc(unsigned int irq, struct irq_desc *desc) { }
40static inline void unregister_irq_proc(unsigned int irq, struct irq_desc *desc) { }
39static inline void register_handler_proc(unsigned int irq, 41static inline void register_handler_proc(unsigned int irq,
40 struct irqaction *action) { } 42 struct irqaction *action) { }
41static inline void unregister_handler_proc(unsigned int irq, 43static inline void unregister_handler_proc(unsigned int irq,