genirq: generic chip: remove irq_gc_mask_disable_reg_and_ack()
authorDoug Berger <opendmb@gmail.com>
Wed, 4 Oct 2017 12:28:17 +0000 (14:28 +0200)
committerMarc Zyngier <marc.zyngier@arm.com>
Fri, 13 Oct 2017 15:31:05 +0000 (16:31 +0100)
Any usage of the irq_gc_mask_disable_reg_and_ack() function has
been replaced with the desired functionality.

The incorrect and ambiguously named function is removed here to
prevent accidental misuse.

Signed-off-by: Doug Berger <opendmb@gmail.com>
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
include/linux/irq.h
kernel/irq/generic-chip.c

index 494d328..5ad1094 100644 (file)
@@ -1009,7 +1009,6 @@ void irq_gc_mask_clr_bit(struct irq_data *d);
 void irq_gc_unmask_enable_reg(struct irq_data *d);
 void irq_gc_ack_set_bit(struct irq_data *d);
 void irq_gc_ack_clr_bit(struct irq_data *d);
-void irq_gc_mask_disable_reg_and_ack(struct irq_data *d);
 void irq_gc_mask_disable_and_ack_set(struct irq_data *d);
 void irq_gc_eoi(struct irq_data *d);
 int irq_gc_set_wake(struct irq_data *d, unsigned int on);
index ec5fe9a..c26c5bb 100644 (file)
@@ -134,22 +134,6 @@ void irq_gc_ack_clr_bit(struct irq_data *d)
        irq_gc_unlock(gc);
 }
 
-/**
- * irq_gc_mask_disable_reg_and_ack - Mask and ack pending interrupt
- * @d: irq_data
- */
-void irq_gc_mask_disable_reg_and_ack(struct irq_data *d)
-{
-       struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
-       struct irq_chip_type *ct = irq_data_get_chip_type(d);
-       u32 mask = d->mask;
-
-       irq_gc_lock(gc);
-       irq_reg_writel(gc, mask, ct->regs.mask);
-       irq_reg_writel(gc, mask, ct->regs.ack);
-       irq_gc_unlock(gc);
-}
-
 /**
  * irq_gc_mask_disable_and_ack_set - Mask and ack pending interrupt
  * @d: irq_data