From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julien Grall Subject: [PATCH v2 03/16] xen/arm: IRQ: Rename irq_cfg into arch_irq_desc Date: Thu, 3 Apr 2014 21:41:54 +0100 Message-ID: <1396557727-19102-4-git-send-email-julien.grall@linaro.org> References: <1396557727-19102-1-git-send-email-julien.grall@linaro.org> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta3.messagelabs.com ([195.245.230.39]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1WVoSz-0008Av-06 for xen-devel@lists.xenproject.org; Thu, 03 Apr 2014 20:42:29 +0000 Received: by mail-we0-f178.google.com with SMTP id u56so2471950wes.9 for ; Thu, 03 Apr 2014 13:42:27 -0700 (PDT) In-Reply-To: <1396557727-19102-1-git-send-email-julien.grall@linaro.org> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: xen-devel@lists.xenproject.org Cc: stefano.stabellini@citrix.com, Julien Grall , tim@xen.org, ian.campbell@citrix.com List-Id: xen-devel@lists.xenproject.org irq_cfg is never used in the code and arch_irq_desc is an alias to irq_cfg. Signed-off-by: Julien Grall --- Changes in v2: - Patch added --- xen/include/asm-arm/irq.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/xen/include/asm-arm/irq.h b/xen/include/asm-arm/irq.h index 7c20703..3197aec 100644 --- a/xen/include/asm-arm/irq.h +++ b/xen/include/asm-arm/irq.h @@ -14,8 +14,7 @@ struct arch_pirq { }; -struct irq_cfg { -#define arch_irq_desc irq_cfg +struct arch_irq_desc { int eoi_cpu; }; -- 1.7.10.4