From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752933AbbGMUfF (ORCPT ); Mon, 13 Jul 2015 16:35:05 -0400 Received: from www.linutronix.de ([62.245.132.108]:55625 "EHLO Galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751115AbbGMUfE (ORCPT ); Mon, 13 Jul 2015 16:35:04 -0400 Message-Id: <20150713125611.652550580@linutronix.de> User-Agent: quilt/0.63-1 Date: Mon, 13 Jul 2015 20:34:56 -0000 From: Thomas Gleixner To: LKML Cc: Steven Miao , Jiang Liu , adi-buildroot-devel@lists.sourceforge.net Subject: [patch 1/2] blackfin/irq: Use access helper irq_data_get_affinity_mask() References: <20150713125446.864421561@linutronix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Disposition: inline; filename=blackfin-irq-Use-access-helper-irq_data_get_affinity.patch X-Linutronix-Spam-Score: -1.0 X-Linutronix-Spam-Level: - X-Linutronix-Spam-Status: No , -1.0 points, 5.0 required, ALL_TRUSTED=-1,SHORTCIRCUIT=-0.0001,URIBL_BLOCKED=0.001 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Jiang Liu This is a preparatory patch for moving irq_data struct members. Signed-off-by: Jiang Liu Cc: adi-buildroot-devel@lists.sourceforge.net Cc: Steven Miao Signed-off-by: Thomas Gleixner --- arch/blackfin/mach-common/ints-priority.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) Index: tip/arch/blackfin/mach-common/ints-priority.c =================================================================== --- tip.orig/arch/blackfin/mach-common/ints-priority.c +++ tip/arch/blackfin/mach-common/ints-priority.c @@ -194,7 +194,8 @@ void bfin_internal_unmask_irq(unsigned i #ifdef CONFIG_SMP static void bfin_internal_unmask_irq_chip(struct irq_data *d) { - bfin_internal_unmask_irq_affinity(d->irq, d->affinity); + bfin_internal_unmask_irq_affinity(d->irq, + irq_data_get_affinity_mask(d)); } static int bfin_internal_set_affinity(struct irq_data *d,