diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-02-06 18:39:14 -0500 |
---|---|---|
committer | Greg Ungerer <gerg@uclinux.org> | 2011-03-15 07:01:52 -0400 |
commit | c2ff7c716a609dcc3b7f899a9052a6f6a93645b5 (patch) | |
tree | ec1ff390fe57d2f0ba532ca523c6537fc1b672e5 /arch/m68knommu/platform | |
parent | e6988f2f53ef0a686909702358e21ee0c62bfbca (diff) |
m68knommu: Convert coldfire intc irq_chip to new
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Diffstat (limited to 'arch/m68knommu/platform')
-rw-r--r-- | arch/m68knommu/platform/coldfire/intc.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/arch/m68knommu/platform/coldfire/intc.c b/arch/m68knommu/platform/coldfire/intc.c index 60d2fcbe182b..d648081a63f6 100644 --- a/arch/m68knommu/platform/coldfire/intc.c +++ b/arch/m68knommu/platform/coldfire/intc.c | |||
@@ -111,28 +111,28 @@ void mcf_autovector(int irq) | |||
111 | #endif | 111 | #endif |
112 | } | 112 | } |
113 | 113 | ||
114 | static void intc_irq_mask(unsigned int irq) | 114 | static void intc_irq_mask(struct irq_data *d) |
115 | { | 115 | { |
116 | if (mcf_irq2imr[irq]) | 116 | if (mcf_irq2imr[d->irq]) |
117 | mcf_setimr(mcf_irq2imr[irq]); | 117 | mcf_setimr(mcf_irq2imr[d->irq]); |
118 | } | 118 | } |
119 | 119 | ||
120 | static void intc_irq_unmask(unsigned int irq) | 120 | static void intc_irq_unmask(struct irq_data *d) |
121 | { | 121 | { |
122 | if (mcf_irq2imr[irq]) | 122 | if (mcf_irq2imr[d->irq]) |
123 | mcf_clrimr(mcf_irq2imr[irq]); | 123 | mcf_clrimr(mcf_irq2imr[d->irq]); |
124 | } | 124 | } |
125 | 125 | ||
126 | static int intc_irq_set_type(unsigned int irq, unsigned int type) | 126 | static int intc_irq_set_type(struct irq_data *d, unsigned int type) |
127 | { | 127 | { |
128 | return 0; | 128 | return 0; |
129 | } | 129 | } |
130 | 130 | ||
131 | static struct irq_chip intc_irq_chip = { | 131 | static struct irq_chip intc_irq_chip = { |
132 | .name = "CF-INTC", | 132 | .name = "CF-INTC", |
133 | .mask = intc_irq_mask, | 133 | .irq_mask = intc_irq_mask, |
134 | .unmask = intc_irq_unmask, | 134 | .irq_unmask = intc_irq_unmask, |
135 | .set_type = intc_irq_set_type, | 135 | .irq_set_type = intc_irq_set_type, |
136 | }; | 136 | }; |
137 | 137 | ||
138 | void __init init_IRQ(void) | 138 | void __init init_IRQ(void) |