aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-sh/hw_irq.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-sh/hw_irq.h')
-rw-r--r--include/asm-sh/hw_irq.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-sh/hw_irq.h b/include/asm-sh/hw_irq.h
index 6c759b2b8929..0e6a60304974 100644
--- a/include/asm-sh/hw_irq.h
+++ b/include/asm-sh/hw_irq.h
@@ -75,7 +75,7 @@ struct intc_desc {
75 unsigned int nr_prio_regs; 75 unsigned int nr_prio_regs;
76 struct intc_sense_reg *sense_regs; 76 struct intc_sense_reg *sense_regs;
77 unsigned int nr_sense_regs; 77 unsigned int nr_sense_regs;
78 struct irq_chip chip; 78 char *name;
79}; 79};
80 80
81#define _INTC_ARRAY(a) a, sizeof(a)/sizeof(*a) 81#define _INTC_ARRAY(a) a, sizeof(a)/sizeof(*a)
@@ -86,7 +86,7 @@ struct intc_desc symbol = { \
86 _INTC_ARRAY(priorities), \ 86 _INTC_ARRAY(priorities), \
87 _INTC_ARRAY(mask_regs), _INTC_ARRAY(prio_regs), \ 87 _INTC_ARRAY(mask_regs), _INTC_ARRAY(prio_regs), \
88 _INTC_ARRAY(sense_regs), \ 88 _INTC_ARRAY(sense_regs), \
89 .chip.name = chipname, \ 89 chipname, \
90} 90}
91 91
92void __init register_intc_controller(struct intc_desc *desc); 92void __init register_intc_controller(struct intc_desc *desc);