From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753912AbbG2IQj (ORCPT ); Wed, 29 Jul 2015 04:16:39 -0400 Received: from terminus.zytor.com ([198.137.202.10]:57046 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752844AbbG2IQg (ORCPT ); Wed, 29 Jul 2015 04:16:36 -0400 Date: Wed, 29 Jul 2015 01:16:19 -0700 From: tip-bot for Jiang Liu Message-ID: Cc: jiang.liu@linux.intel.com, magnus.damm@gmail.com, linux-kernel@vger.kernel.org, tglx@linutronix.de, horms@verge.net.au, hpa@zytor.com, mingo@kernel.org Reply-To: magnus.damm@gmail.com, jiang.liu@linux.intel.com, linux-kernel@vger.kernel.org, mingo@kernel.org, hpa@zytor.com, tglx@linutronix.de, horms@verge.net.au In-Reply-To: <20150713151626.519112900@linutronix.de> References: <20150713151626.519112900@linutronix.de> To: linux-tip-commits@vger.kernel.org Subject: [tip:irq/core] sh/irq: Use accessor irq_data_get_node() Git-Commit-ID: cde5c2756832089e35b0c50417cc2858630f2005 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: cde5c2756832089e35b0c50417cc2858630f2005 Gitweb: http://git.kernel.org/tip/cde5c2756832089e35b0c50417cc2858630f2005 Author: Jiang Liu AuthorDate: Mon, 13 Jul 2015 20:51:20 +0000 Committer: Ingo Molnar CommitDate: Wed, 29 Jul 2015 10:08:06 +0200 sh/irq: Use accessor irq_data_get_node() Use accessor irq_data_get_node() to hide struct irq_data implementation detail, so we can move irq_data->node to irq_data_common once all usage sites are fixed. Signed-off-by: Jiang Liu Cc: Simon Horman Cc: Magnus Damm Link: http://lkml.kernel.org/r/20150713151626.519112900@linutronix.de Signed-off-by: Thomas Gleixner Signed-off-by: Ingo Molnar --- arch/sh/kernel/irq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/sh/kernel/irq.c b/arch/sh/kernel/irq.c index eb10ff8..8dc677c 100644 --- a/arch/sh/kernel/irq.c +++ b/arch/sh/kernel/irq.c @@ -227,7 +227,7 @@ void migrate_irqs(void) for_each_active_irq(irq) { struct irq_data *data = irq_get_irq_data(irq); - if (data->node == cpu) { + if (irq_data_get_node(data) == cpu) { unsigned int newcpu = cpumask_any_and(data->affinity, cpu_online_mask); if (newcpu >= nr_cpu_ids) {