pinctrl: sunxi: Use irq_set_chip_handler_name_locked()
__irq_set_chip_handler_name_locked() is about to be replaced. Use irq_set_chip_handler_name_locked() instead. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Linus Walleij <linus.walleij@linaro.org> Cc: linux-gpio@vger.kernel.org
This commit is contained in:
parent
6584d84c3e
commit
b9a5ec33e3
|
@ -617,13 +617,11 @@ static int sunxi_pinctrl_irq_set_type(struct irq_data *d, unsigned int type)
|
|||
spin_lock_irqsave(&pctl->lock, flags);
|
||||
|
||||
if (type & IRQ_TYPE_LEVEL_MASK)
|
||||
__irq_set_chip_handler_name_locked(d->irq,
|
||||
&sunxi_pinctrl_level_irq_chip,
|
||||
handle_fasteoi_irq, NULL);
|
||||
irq_set_chip_handler_name_locked(d, &sunxi_pinctrl_level_irq_chip,
|
||||
handle_fasteoi_irq, NULL);
|
||||
else
|
||||
__irq_set_chip_handler_name_locked(d->irq,
|
||||
&sunxi_pinctrl_edge_irq_chip,
|
||||
handle_edge_irq, NULL);
|
||||
irq_set_chip_handler_name_locked(d, &sunxi_pinctrl_edge_irq_chip,
|
||||
handle_edge_irq, NULL);
|
||||
|
||||
regval = readl(pctl->membase + reg);
|
||||
regval &= ~(IRQ_CFG_IRQ_MASK << index);
|
||||
|
|
Loading…
Reference in New Issue