aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-sa1100/neponset.c
diff options
context:
space:
mode:
authorLennert Buytenhek <buytenh@wantstofly.org>2010-11-29 05:12:06 -0500
committerLennert Buytenhek <buytenh@wantstofly.org>2011-01-13 11:18:58 -0500
commitc4e8964e4eb3ea4edc34e1832d1691468f326beb (patch)
tree7b5ff77775880af151cbf09ff64447588f31dac7 /arch/arm/mach-sa1100/neponset.c
parent9a364da73d84bb5181fc8a0f85d497b596f0d560 (diff)
ARM: sa1100: irq_data conversion.
Signed-off-by: Lennert Buytenhek <buytenh@secretlab.ca>
Diffstat (limited to 'arch/arm/mach-sa1100/neponset.c')
-rw-r--r--arch/arm/mach-sa1100/neponset.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/mach-sa1100/neponset.c b/arch/arm/mach-sa1100/neponset.c
index c601a75a333d..4aad01f73660 100644
--- a/arch/arm/mach-sa1100/neponset.c
+++ b/arch/arm/mach-sa1100/neponset.c
@@ -35,7 +35,7 @@ neponset_irq_handler(unsigned int irq, struct irq_desc *desc)
35 /* 35 /*
36 * Acknowledge the parent IRQ. 36 * Acknowledge the parent IRQ.
37 */ 37 */
38 desc->chip->ack(irq); 38 desc->irq_data.chip->irq_ack(&desc->irq_data);
39 39
40 /* 40 /*
41 * Read the interrupt reason register. Let's have all 41 * Read the interrupt reason register. Let's have all
@@ -53,7 +53,7 @@ neponset_irq_handler(unsigned int irq, struct irq_desc *desc)
53 * recheck the register for any pending IRQs. 53 * recheck the register for any pending IRQs.
54 */ 54 */
55 if (irr & (IRR_ETHERNET | IRR_USAR)) { 55 if (irr & (IRR_ETHERNET | IRR_USAR)) {
56 desc->chip->mask(irq); 56 desc->irq_data.chip->irq_mask(&desc->irq_data);
57 57
58 /* 58 /*
59 * Ack the interrupt now to prevent re-entering 59 * Ack the interrupt now to prevent re-entering
@@ -61,7 +61,7 @@ neponset_irq_handler(unsigned int irq, struct irq_desc *desc)
61 * since we'll check the IRR register prior to 61 * since we'll check the IRR register prior to
62 * leaving. 62 * leaving.
63 */ 63 */
64 desc->chip->ack(irq); 64 desc->irq_data.chip->irq_ack(&desc->irq_data);
65 65
66 if (irr & IRR_ETHERNET) { 66 if (irr & IRR_ETHERNET) {
67 generic_handle_irq(IRQ_NEPONSET_SMC9196); 67 generic_handle_irq(IRQ_NEPONSET_SMC9196);
@@ -71,7 +71,7 @@ neponset_irq_handler(unsigned int irq, struct irq_desc *desc)
71 generic_handle_irq(IRQ_NEPONSET_USAR); 71 generic_handle_irq(IRQ_NEPONSET_USAR);
72 } 72 }
73 73
74 desc->chip->unmask(irq); 74 desc->irq_data.chip->irq_unmask(&desc->irq_data);
75 } 75 }
76 76
77 if (irr & IRR_SA1111) { 77 if (irr & IRR_SA1111) {