From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754566AbbG0P4Y (ORCPT ); Mon, 27 Jul 2015 11:56:24 -0400 Received: from terminus.zytor.com ([198.137.202.10]:36124 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753832AbbG0P4X (ORCPT ); Mon, 27 Jul 2015 11:56:23 -0400 Date: Mon, 27 Jul 2015 08:56:09 -0700 From: tip-bot for Thomas Gleixner Message-ID: Cc: fenghua.yu@intel.com, hpa@zytor.com, linux-kernel@vger.kernel.org, jiang.liu@linux.intel.com, tony.luck@intel.com, tglx@linutronix.de, mingo@kernel.org Reply-To: jiang.liu@linux.intel.com, hpa@zytor.com, linux-kernel@vger.kernel.org, fenghua.yu@intel.com, mingo@kernel.org, tglx@linutronix.de, tony.luck@intel.com In-Reply-To: <20150713131034.723024979@linutronix.de> References: <20150713131034.723024979@linutronix.de> To: linux-tip-commits@vger.kernel.org Subject: [tip:irq/core] ia64/iosapic: Use irq_set_chip_handler_name_locked () Git-Commit-ID: 59fb3d58c5284b42d93262a4690291e9c0e78fe6 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: 59fb3d58c5284b42d93262a4690291e9c0e78fe6 Gitweb: http://git.kernel.org/tip/59fb3d58c5284b42d93262a4690291e9c0e78fe6 Author: Thomas Gleixner AuthorDate: Mon, 13 Jul 2015 20:42:48 +0000 Committer: Thomas Gleixner CommitDate: Mon, 27 Jul 2015 13:36:37 +0200 ia64/iosapic: 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 Cc: Jiang Liu Cc: Tony Luck Cc: Fenghua Yu Link: http://lkml.kernel.org/r/20150713131034.723024979@linutronix.de Signed-off-by: Thomas Gleixner --- arch/ia64/kernel/iosapic.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/ia64/kernel/iosapic.c b/arch/ia64/kernel/iosapic.c index 4d2698d..d2fae05 100644 --- a/arch/ia64/kernel/iosapic.c +++ b/arch/ia64/kernel/iosapic.c @@ -610,9 +610,9 @@ register_intr (unsigned int gsi, int irq, unsigned char delivery, chip->name, irq_type->name); chip = irq_type; } - __irq_set_chip_handler_name_locked(irq, chip, trigger == IOSAPIC_EDGE ? - handle_edge_irq : handle_level_irq, - NULL); + irq_set_chip_handler_name_locked(irq_get_irq_data(irq), chip, + trigger == IOSAPIC_EDGE ? handle_edge_irq : handle_level_irq, + NULL); return 0; }