Since we have now introduced pmask_cache within irq_chip_type to also handle per-chip-type mask registers, convert jz4740 irq driver to use this new pointer. Signed-off-by: Gerlando Falauto <gerlando.falauto@xxxxxxxxxxx> --- arch/mips/jz4740/irq.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arch/mips/jz4740/irq.c b/arch/mips/jz4740/irq.c index fc57ded..228ee33 100644 --- a/arch/mips/jz4740/irq.c +++ b/arch/mips/jz4740/irq.c @@ -68,7 +68,8 @@ void jz4740_irq_suspend(struct irq_data *data) void jz4740_irq_resume(struct irq_data *data) { struct irq_chip_generic *gc = irq_data_get_irq_chip_data(data); - jz4740_irq_set_mask(gc, gc->mask_cache); + struct irq_chip_type *ct = irq_data_get_irq_chip_type(data); + jz4740_irq_set_mask(gc, *ct->pmask_cache); } static struct irqaction jz4740_cascade_action = { -- 1.7.10.1 -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html