diff options
author | Florian Fainelli <[email protected]> | 2017-10-04 14:27:20 +0200 |
---|---|---|
committer | Marc Zyngier <[email protected]> | 2017-10-13 16:31:05 +0100 |
commit | 16150904d8ba7b93b51d97bcfc671951b7f3dc02 (patch) | |
tree | 46028a137d232181e67aaa15605ba534cd425871 | |
parent | 20608924cc2e6bdeaf6f58ccbe9ddfe12dbfa082 (diff) |
irqchip/tango: Use irq_gc_mask_disable_and_ack_set
The only usage of the irq_gc_mask_disable_reg_and_ack() function
is by the Tango irqchip driver. This usage is replaced by the
irq_gc_mask_disable_and_ack_set() function since it provides the
intended functionality.
Fixes: 4bba66899ac6 ("irqchip/tango: Add support for Sigma Designs SMP86xx/SMP87xx interrupt controller")
Acked-by: Mans Rullgard <[email protected]>
Acked-by: Marc Gonzalez <[email protected]>
Signed-off-by: Florian Fainelli <[email protected]>
Signed-off-by: Doug Berger <[email protected]>
Signed-off-by: Marc Zyngier <[email protected]>
-rw-r--r-- | drivers/irqchip/irq-tango.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/irqchip/irq-tango.c b/drivers/irqchip/irq-tango.c index bdbb5c0ff7fe..0c085303a583 100644 --- a/drivers/irqchip/irq-tango.c +++ b/drivers/irqchip/irq-tango.c @@ -141,7 +141,7 @@ static void __init tangox_irq_init_chip(struct irq_chip_generic *gc, for (i = 0; i < 2; i++) { ct[i].chip.irq_ack = irq_gc_ack_set_bit; ct[i].chip.irq_mask = irq_gc_mask_disable_reg; - ct[i].chip.irq_mask_ack = irq_gc_mask_disable_reg_and_ack; + ct[i].chip.irq_mask_ack = irq_gc_mask_disable_and_ack_set; ct[i].chip.irq_unmask = irq_gc_unmask_enable_reg; ct[i].chip.irq_set_type = tangox_irq_set_type; ct[i].chip.name = gc->domain->name; |