Commit 073f7f99 authored by Thomas Gleixner's avatar Thomas Gleixner Committed by Lee Jones

mfd: htc-egpio: Consolidate chained IRQ handler install/remove

Chained irq handlers usually set up handler data as well. We now have
a function to set both under irq_desc->lock. Replace the two calls
with one.

Search and conversion was done with coccinelle:
Reported-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
parent c89fc9ac
...@@ -353,8 +353,8 @@ static int __init egpio_probe(struct platform_device *pdev) ...@@ -353,8 +353,8 @@ static int __init egpio_probe(struct platform_device *pdev)
irq_clear_status_flags(irq, IRQ_NOREQUEST | IRQ_NOPROBE); irq_clear_status_flags(irq, IRQ_NOREQUEST | IRQ_NOPROBE);
} }
irq_set_irq_type(ei->chained_irq, IRQ_TYPE_EDGE_RISING); irq_set_irq_type(ei->chained_irq, IRQ_TYPE_EDGE_RISING);
irq_set_handler_data(ei->chained_irq, ei); irq_set_chained_handler_and_data(ei->chained_irq,
irq_set_chained_handler(ei->chained_irq, egpio_handler); egpio_handler, ei);
ack_irqs(ei); ack_irqs(ei);
device_init_wakeup(&pdev->dev, 1); device_init_wakeup(&pdev->dev, 1);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment