From nobody Fri Apr 26 20:38:31 2024 Delivered-To: importer@patchew.org Received-SPF: none (zohomail.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) client-ip=192.237.175.120; envelope-from=xen-devel-bounces@lists.xenproject.org; helo=lists.xenproject.org; Authentication-Results: mx.zohomail.com; spf=none (zohomail.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org Return-Path: Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) by mx.zohomail.com with SMTPS id 15815976274791019.3510782555566; Thu, 13 Feb 2020 04:40:27 -0800 (PST) Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1j2Dlx-0003wC-2p; Thu, 13 Feb 2020 12:39:13 +0000 Received: from us1-rack-iad1.inumbo.com ([172.99.69.81]) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1j2Dlv-0003w7-Ed for xen-devel@lists.xenproject.org; Thu, 13 Feb 2020 12:39:11 +0000 Received: from mail-wm1-f67.google.com (unknown [209.85.128.67]) by us1-rack-iad1.inumbo.com (Halon) with ESMTPS id d540788e-4e5d-11ea-b0fd-bc764e2007e4; Thu, 13 Feb 2020 12:39:10 +0000 (UTC) Received: by mail-wm1-f67.google.com with SMTP id s144so7014909wme.1 for ; Thu, 13 Feb 2020 04:39:10 -0800 (PST) Received: from ufe34d9ed68d054.ant.amazon.com (54-240-197-235.amazon.com. [54.240.197.235]) by smtp.gmail.com with ESMTPSA id y7sm13445465wmd.1.2020.02.13.04.39.09 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 13 Feb 2020 04:39:09 -0800 (PST) X-Inumbo-ID: d540788e-4e5d-11ea-b0fd-bc764e2007e4 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; bh=pxuifacQb8A8llKuV1dHybaKqQ0cuFkZRmIkMGLGiIs=; b=kePMmF2hC7FcM5v2Pka86XFpMnyMupDrlruABGYJEG3rF01WhHiDnkZlIsvaPD9sqY 3zl/VpkN8M3p5RqWzsgUGfk/5R7RGKisgNX0Y2VjKoZm1XD7e4SAvAftfukJuvCgbVIR cHioeM3O3evKGNhYo9GDFFsaoFFFDp96VjarHLqU2ELvQPeaTbA47Jd9ZarA5O0GXjRr jKrdaxt6HR64GM52eL4wDIo8c9CCcNTsE2UV1+YbgUfxbfLyKAXfByyuHADcX0j2P9Q9 vreCn1QFMFawVZFi0xcgplX0TWwoUpj4jlq2e9BV/2E6kbtGoXatcL/twboJ9x0EQuYO EHyQ== X-Gm-Message-State: APjAAAW6fFQl4uhCTcI4sgD9d6nuaNqNpafeS1pNmobXnWhCbRwJ0Ohw YG5Bdgnc27u8oqlMzOUo/B4bMWMBvQXLiQ== X-Google-Smtp-Source: APXvYqyUVRQQj4yvnnxXhC1Hw0xIDKQY64yBDJB2Qhrr4uPCsmqPEI+sse49+bCXMQA0nnVR+X8Dog== X-Received: by 2002:a1c:5448:: with SMTP id p8mr5921835wmi.159.1581597549924; Thu, 13 Feb 2020 04:39:09 -0800 (PST) From: Julien Grall To: xen-devel@lists.xenproject.org Date: Thu, 13 Feb 2020 12:39:06 +0000 Message-Id: <20200213123906.10376-1-julien@xen.org> X-Mailer: git-send-email 2.17.1 Subject: [Xen-devel] [PATCH] xen/arm: Use asm/ rather than asm-arm/ when including header 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: Volodymyr Babchuk , Stefano Stabellini , Julien Grall MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Errors-To: xen-devel-bounces@lists.xenproject.org Sender: "Xen-devel" All the arch headers (i.e under asm-arm) are included using "asm/*.h". To stay consistent, remove the only instance where "asm-arm/*.h" is used. Take the opportunity to move the inclusion with the rest of the asm/ include. Signed-off-by: Julien Grall Reviewed-by: Stefano Stabellini --- xen/include/asm-arm/domain.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/include/asm-arm/domain.h b/xen/include/asm-arm/domain.h index 85a6f17d4d..d2142c6707 100644 --- a/xen/include/asm-arm/domain.h +++ b/xen/include/asm-arm/domain.h @@ -9,10 +9,10 @@ #include #include #include +#include #include #include #include -#include =20 struct hvm_domain { --=20 2.17.1 _______________________________________________ Xen-devel mailing list Xen-devel@lists.xenproject.org https://lists.xenproject.org/mailman/listinfo/xen-devel