From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752963AbbGMUIs (ORCPT ); Mon, 13 Jul 2015 16:08:48 -0400 Received: from www.linutronix.de ([62.245.132.108]:55331 "EHLO Galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752301AbbGMUIq (ORCPT ); Mon, 13 Jul 2015 16:08:46 -0400 Message-Id: <20150713075508.821878421@linutronix.de> User-Agent: quilt/0.63-1 Date: Mon, 13 Jul 2015 20:08:38 -0000 From: Thomas Gleixner To: LKML Cc: Jiang Liu , Matt Turner Subject: [patch] alpha/irq: Use access helper irq_data_get_affinity_mask() MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Disposition: inline; filename=alpha-irq-Use-access-helper-irq_data_get_affinity_ma.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: Matt Turner Signed-off-by: Thomas Gleixner --- arch/alpha/kernel/irq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: tip/arch/alpha/kernel/irq.c =================================================================== --- tip.orig/arch/alpha/kernel/irq.c +++ tip/arch/alpha/kernel/irq.c @@ -59,7 +59,7 @@ int irq_select_affinity(unsigned int irq cpu = (cpu < (NR_CPUS-1) ? cpu + 1 : 0); last_cpu = cpu; - cpumask_copy(data->affinity, cpumask_of(cpu)); + cpumask_copy(irq_data_get_affinity_mask(data), cpumask_of(cpu)); chip->irq_set_affinity(data, cpumask_of(cpu), false); return 0; }