From: Benjamin Herrenschmidt Date: Wed, 30 Mar 2011 00:07:13 +0000 (+1100) Subject: powerpc/8xx: Fix another breakage from the irq_data conversion X-Git-Tag: v2.6.39-rc2~38^2~1 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=b3cf2bb3d5de306aebfd1dfbcb0c8d33c0214046;p=~shefty%2Frdma-dev.git powerpc/8xx: Fix another breakage from the irq_data conversion Signed-off-by: Benjamin Herrenschmidt --- diff --git a/arch/powerpc/sysdev/mpc8xx_pic.c b/arch/powerpc/sysdev/mpc8xx_pic.c index f550e23632f..a88800ff4d0 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;