From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Gleixner Subject: [patch 02/22] pinctrl: Consolidate chained IRQ handler install/remove Date: Mon, 13 Jul 2015 20:47:36 -0000 Message-ID: <20150713072814.431352855@linutronix.de> References: <20150713072703.919712512@linutronix.de> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Return-path: Content-Disposition: inline; filename=pinctrl-Consolidate-chained-IRQ-handler-install-remo.patch Sender: linux-kernel-owner@vger.kernel.org To: LKML Cc: Linus Walleij , linux-gpio@vger.kernel.org, Jiang Liu , Russell King , Julia Lawall List-Id: linux-gpio@vger.kernel.org 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: Russell King Signed-off-by: Thomas Gleixner Cc: Julia Lawall Cc: Linus Walleij Cc: linux-gpio@vger.kernel.org --- drivers/pinctrl/pinctrl-single.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Index: tip/drivers/pinctrl/pinctrl-single.c =================================================================== --- tip.orig/drivers/pinctrl/pinctrl-single.c +++ tip/drivers/pinctrl/pinctrl-single.c @@ -1767,9 +1767,9 @@ static int pcs_irq_init_chained_handler( return res; } } else { - irq_set_handler_data(pcs_soc->irq, pcs_soc); - irq_set_chained_handler(pcs_soc->irq, - pcs_irq_chain_handler); + irq_set_chained_handler_and_data(pcs_soc->irq, + pcs_irq_chain_handler, + pcs_soc); } /*