aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/linux/irq.h3
-rw-r--r--include/linux/irqdesc.h1
2 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/irq.h b/include/linux/irq.h
index 3ce45c257edb..62bb08e4af13 100644
--- a/include/linux/irq.h
+++ b/include/linux/irq.h
@@ -102,6 +102,8 @@ struct msi_desc;
102 * struct irq_data - per irq and irq chip data passed down to chip functions 102 * struct irq_data - per irq and irq chip data passed down to chip functions
103 * @irq: interrupt number 103 * @irq: interrupt number
104 * @node: node index useful for balancing 104 * @node: node index useful for balancing
105 * @state_use_accessor: status information for irq chip functions.
106 * Use accessor functions to deal with it
105 * @chip: low level interrupt hardware access 107 * @chip: low level interrupt hardware access
106 * @handler_data: per-IRQ data for the irq_chip methods 108 * @handler_data: per-IRQ data for the irq_chip methods
107 * @chip_data: platform-specific per-chip private data for the chip 109 * @chip_data: platform-specific per-chip private data for the chip
@@ -116,6 +118,7 @@ struct msi_desc;
116struct irq_data { 118struct irq_data {
117 unsigned int irq; 119 unsigned int irq;
118 unsigned int node; 120 unsigned int node;
121 unsigned int state_use_accessors;
119 struct irq_chip *chip; 122 struct irq_chip *chip;
120 void *handler_data; 123 void *handler_data;
121 void *chip_data; 124 void *chip_data;
diff --git a/include/linux/irqdesc.h b/include/linux/irqdesc.h
index 782bf9851a9f..581d9665fd38 100644
--- a/include/linux/irqdesc.h
+++ b/include/linux/irqdesc.h
@@ -48,6 +48,7 @@ struct irq_desc {
48 struct { 48 struct {
49 unsigned int irq; 49 unsigned int irq;
50 unsigned int node; 50 unsigned int node;
51 unsigned int pad_do_not_even_think_about_it;
51 struct irq_chip *chip; 52 struct irq_chip *chip;
52 void *handler_data; 53 void *handler_data;
53 void *chip_data; 54 void *chip_data;