aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/irqdesc.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/irqdesc.h')
-rw-r--r--include/linux/irqdesc.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/linux/irqdesc.h b/include/linux/irqdesc.h
index 9a323d12de1..623325e2ff9 100644
--- a/include/linux/irqdesc.h
+++ b/include/linux/irqdesc.h
@@ -10,12 +10,12 @@
10 10
11struct irq_affinity_notify; 11struct irq_affinity_notify;
12struct proc_dir_entry; 12struct proc_dir_entry;
13struct timer_rand_state;
14struct module; 13struct module;
14struct irq_desc;
15
15/** 16/**
16 * struct irq_desc - interrupt descriptor 17 * struct irq_desc - interrupt descriptor
17 * @irq_data: per irq and chip data passed down to chip functions 18 * @irq_data: per irq and chip data passed down to chip functions
18 * @timer_rand_state: pointer to timer rand state struct
19 * @kstat_irqs: irq stats per cpu 19 * @kstat_irqs: irq stats per cpu
20 * @handle_irq: highlevel irq-events handler 20 * @handle_irq: highlevel irq-events handler
21 * @preflow_handler: handler called before the flow handler (currently used by sparc) 21 * @preflow_handler: handler called before the flow handler (currently used by sparc)
@@ -67,6 +67,7 @@ struct irq_desc {
67#ifdef CONFIG_PROC_FS 67#ifdef CONFIG_PROC_FS
68 struct proc_dir_entry *dir; 68 struct proc_dir_entry *dir;
69#endif 69#endif
70 int parent_irq;
70 struct module *owner; 71 struct module *owner;
71 const char *name; 72 const char *name;
72} ____cacheline_internodealigned_in_smp; 73} ____cacheline_internodealigned_in_smp;