From patchwork Mon Jan 13 21:33:39 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Julien Grall X-Patchwork-Id: 11330963 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id BD82C1398 for ; Mon, 13 Jan 2020 21:34:55 +0000 (UTC) Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id A253B2084D for ; Mon, 13 Jan 2020 21:34:55 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org A253B2084D Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=xen.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=xen-devel-bounces@lists.xenproject.org Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1ir7LU-0006bv-HB; Mon, 13 Jan 2020 21:34:00 +0000 Received: from us1-rack-iad1.inumbo.com ([172.99.69.81]) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1ir7LT-0006bZ-Or for xen-devel@lists.xenproject.org; Mon, 13 Jan 2020 21:33:59 +0000 X-Inumbo-ID: 61750c18-364c-11ea-ac27-bc764e2007e4 Received: from mail-wr1-f66.google.com (unknown [209.85.221.66]) by us1-rack-iad1.inumbo.com (Halon) with ESMTPS id 61750c18-364c-11ea-ac27-bc764e2007e4; Mon, 13 Jan 2020 21:33:47 +0000 (UTC) Received: by mail-wr1-f66.google.com with SMTP id j42so10136942wrj.12 for ; Mon, 13 Jan 2020 13:33:47 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=tK+XWcqhdvm5uNAF7XfUhV11KCjVM6xTfRNGXWs/ga0=; b=WHSoB3fmzvaY+PsLSaaJQkyLQp3+wdYZv2bYM1kHbpBcY4YQoZjzAWDdAD6UPl7WZ4 CTv2LI9m4B7Wi1Wu94KGz4nrlekj/13VKA59+2ndxb6cOY3NlKnedW9Op1gg5TgMTXsh Vzkpx8cmwvMlyFADs9z2lHEwjiQ6EoYH5U6Ll12dgyvewnZILAJ8F8JqtMsiFrB1EVJv iv3spu9AxqQKbkOrl6VmuZyL3zBprDDRkXVfK7OBXUFJWXS2A+VeZh8jX92ipiUV87jT 5LRvSYqgB79zlf7h678JObkKZ8iIAXxu2WUM0/hPwijLT2nfGRdtwpYTz78WekPD5vBc mnIQ== X-Gm-Message-State: APjAAAWMkxIWBgMDgvru5QUHLHacN/sE7WDpEnTIJsphVdsu34jLBdL0 4Yd1M1Xwb0GdXKzbN15Anubo6akV4qqmCw== X-Google-Smtp-Source: APXvYqztx8nWca01Oz/OfKgBMaH419EBRwvAecQTe1sDIxt2HSBR5sX0boz0LCKmGGKlF4N1XZI1vQ== X-Received: by 2002:adf:ea05:: with SMTP id q5mr21087716wrm.48.1578951226439; Mon, 13 Jan 2020 13:33:46 -0800 (PST) Received: from a483e7b01a66.ant.amazon.com (54-240-197-230.amazon.com. [54.240.197.230]) by smtp.gmail.com with ESMTPSA id i10sm16938652wru.16.2020.01.13.13.33.45 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 13 Jan 2020 13:33:45 -0800 (PST) From: Julien Grall To: xen-devel@lists.xenproject.org Date: Mon, 13 Jan 2020 21:33:39 +0000 Message-Id: <20200113213342.8206-2-julien@xen.org> X-Mailer: git-send-email 2.24.0 In-Reply-To: <20200113213342.8206-1-julien@xen.org> References: <20200113213342.8206-1-julien@xen.org> MIME-Version: 1.0 Subject: [Xen-devel] [PATCH 1/4] xen/x86: Remove unused forward declaration in asm-x86/irq.h X-BeenThere: xen-devel@lists.xenproject.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Cc: Andrew Cooper , Julien Grall , Wei Liu , Jan Beulich , =?utf-8?q?Roger_Pau_Monn=C3=A9?= Errors-To: xen-devel-bounces@lists.xenproject.org Sender: "Xen-devel" From: Julien Grall None of the prototypes within the header asm-x86/irq.h actually requires the forward declaration of "struct pirq". So remove it. No functional changes intended. Signed-off-by: Julien Grall Acked-by: Jan Beulich --- xen/include/asm-x86/irq.h | 1 - 1 file changed, 1 deletion(-) diff --git a/xen/include/asm-x86/irq.h b/xen/include/asm-x86/irq.h index 7c825e9d9c..44aefc8f03 100644 --- a/xen/include/asm-x86/irq.h +++ b/xen/include/asm-x86/irq.h @@ -131,7 +131,6 @@ extern unsigned int io_apic_irqs; DECLARE_PER_CPU(unsigned int, irq_count); -struct pirq; struct arch_pirq { int irq; union {