aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>2011-03-30 11:07:13 +1100
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>2011-03-30 11:07:13 +1100
commitb3cf2bb3d5de306aebfd1dfbcb0c8d33c0214046 (patch)
tree6d3877ea2faf24b88c2231833cbca92c182c02d6
parentpowerpc/cell: Use handle_edge_eoi_irq for real (diff)
downloadlinux-dev-b3cf2bb3d5de306aebfd1dfbcb0c8d33c0214046.tar.xz
linux-dev-b3cf2bb3d5de306aebfd1dfbcb0c8d33c0214046.zip
powerpc/8xx: Fix another breakage from the irq_data conversion
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
-rw-r--r--arch/powerpc/sysdev/mpc8xx_pic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/sysdev/mpc8xx_pic.c b/arch/powerpc/sysdev/mpc8xx_pic.c
index f550e23632f8..a88800ff4d01 100644
--- a/arch/powerpc/sysdev/mpc8xx_pic.c
+++ b/arch/powerpc/sysdev/mpc8xx_pic.c
@@ -80,7 +80,7 @@ static int mpc8xx_set_irq_type(struct irq_data *d, unsigned int flow_type)
if ((hw & 1) == 0) {
siel |= (0x80000000 >> hw);
out_be32(&siu_reg->sc_siel, siel);
- __irq_set_handler_locked(irq, handle_edge_irq);
+ __irq_set_handler_locked(d->irq, handle_edge_irq);
}
}
return 0;