aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/irq.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/irq.h')
-rw-r--r--include/linux/irq.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/irq.h b/include/linux/irq.h
index c13f23dee286..1022c5d42546 100644
--- a/include/linux/irq.h
+++ b/include/linux/irq.h
@@ -61,6 +61,8 @@ struct hw_interrupt_type {
61 61
62typedef struct hw_interrupt_type hw_irq_controller; 62typedef struct hw_interrupt_type hw_irq_controller;
63 63
64struct proc_dir_entry;
65
64/* 66/*
65 * This is the "IRQ descriptor", which contains various information 67 * This is the "IRQ descriptor", which contains various information
66 * about the irq, including what kind of hardware handling it has, 68 * about the irq, including what kind of hardware handling it has,
@@ -83,6 +85,9 @@ struct irq_desc {
83#if defined(CONFIG_GENERIC_PENDING_IRQ) || defined(CONFIG_IRQBALANCE) 85#if defined(CONFIG_GENERIC_PENDING_IRQ) || defined(CONFIG_IRQBALANCE)
84 unsigned int move_irq; /* need to re-target IRQ dest */ 86 unsigned int move_irq; /* need to re-target IRQ dest */
85#endif 87#endif
88#ifdef CONFIG_PROC_FS
89 struct proc_dir_entry *dir;
90#endif
86} ____cacheline_aligned; 91} ____cacheline_aligned;
87 92
88extern struct irq_desc irq_desc[NR_IRQS]; 93extern struct irq_desc irq_desc[NR_IRQS];