From nobody Sat May 4 04:58:39 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of lists.xenproject.org designates 192.237.175.120 as permitted sender) client-ip=192.237.175.120; envelope-from=xen-devel-bounces@lists.xenproject.org; helo=lists.xenproject.org; Authentication-Results: mx.zohomail.com; spf=pass (zohomail.com: domain of lists.xenproject.org designates 192.237.175.120 as permitted sender) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org; dmarc=fail(p=none dis=none) header.from=arm.com ARC-Seal: i=1; a=rsa-sha256; t=1611221478; cv=none; d=zohomail.com; s=zohoarc; b=HCGYVjq3AOokp3tJ7RxmDfbjrlhXY+3Y3Uab1j7jTofYPEJj22FHN3u35UL88qqH5yLSyUJ5HtKYReMiO98ec0p6iCj79ooBjSAus36yaDK7QyZdZwDJXzbsqbq7blBv4+pwruHUtq5D+Qz9Z51VQSDjpRXUemJijoN8eDPtIDc= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1611221478; h=Content-Transfer-Encoding:Cc:Date:From:List-Subscribe:List-Post:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Sender:Subject:To; bh=wQE9q9tKc/Dy71OsQlkes9QovHgk2n2Tt+PE9L+gCJE=; b=U/kbTedsYTsuN3jlJ8DZ+79tu97t2BYxPuvmwFiY6gr2X+X3Ix888so2GJ4I40QOVqfsfbaGl7PMufCnZ+BNRoDlcPw3GwrGSFhvjtp4wNxTfmQaSS6vr+G9mhLQ8Uv+0Ag6knS9pYOsI90cz9btR248ly1qh2G/ctd5gFdaC+4= ARC-Authentication-Results: i=1; mx.zohomail.com; spf=pass (zohomail.com: domain of lists.xenproject.org designates 192.237.175.120 as permitted sender) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org; dmarc=fail header.from= (p=none dis=none) header.from= Return-Path: Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) by mx.zohomail.com with SMTPS id 1611221478490417.4431644901314; Thu, 21 Jan 2021 01:31:18 -0800 (PST) Received: from list by lists.xenproject.org with outflank-mailman.71940.129204 (Exim 4.92) (envelope-from ) id 1l2WIn-0000W9-6b; Thu, 21 Jan 2021 09:30:53 +0000 Received: by outflank-mailman (output) from mailman id 71940.129204; Thu, 21 Jan 2021 09:30:53 +0000 Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1l2WIn-0000W2-2k; Thu, 21 Jan 2021 09:30:53 +0000 Received: by outflank-mailman (input) for mailman id 71940; Thu, 21 Jan 2021 09:30:51 +0000 Received: from us1-rack-iad1.inumbo.com ([172.99.69.81]) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1l2WIl-0000Vx-R2 for xen-devel@lists.xenproject.org; Thu, 21 Jan 2021 09:30:51 +0000 Received: from foss.arm.com (unknown [217.140.110.172]) by us1-rack-iad1.inumbo.com (Halon) with ESMTP id d802f8ef-9419-4c72-8e13-0cfc1321a908; Thu, 21 Jan 2021 09:30:49 +0000 (UTC) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 636DD14FF; Thu, 21 Jan 2021 01:30:49 -0800 (PST) Received: from e123311-lin.arm.com (unknown [10.57.6.162]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 777893F68F; Thu, 21 Jan 2021 01:30:47 -0800 (PST) X-Outflank-Mailman: Message body and most headers restored to incoming version X-BeenThere: xen-devel@lists.xenproject.org List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Errors-To: xen-devel-bounces@lists.xenproject.org Precedence: list Sender: "Xen-devel" X-Inumbo-ID: d802f8ef-9419-4c72-8e13-0cfc1321a908 From: Michal Orzel To: xen-devel@lists.xenproject.org Cc: Stefano Stabellini , Julien Grall , Volodymyr Babchuk , bertrand.marquis@arm.com, wei.chen@arm.com Subject: [PATCH] xen/arm: Fix compilation error when early printk is enabled Date: Thu, 21 Jan 2021 10:30:41 +0100 Message-Id: <20210121093041.21537-1-michal.orzel@arm.com> X-Mailer: git-send-email 2.29.0 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Fix compilation error when enabling early printk, introduced by commit aa4b9d1ee6538b5cbe218d4d3fcdf9548130a063: ``` debug.S: Assembler messages: debug.S:31: Error: constant expression expected at operand 2 -- `ldr x15,= =3D((0x00400000+(0)*PAGE_SIZE)+(0x1c090000&~PAGE_MASK))` debug.S:38: Error: constant expression expected at operand 2 -- `ldr x15,= =3D((0x00400000+(0)*PAGE_SIZE)+(0x1c090000&~PAGE_MASK))` ``` The fix is to include header which now contains definitions for page/size/mask etc. Signed-off-by: Michal Orzel Reviewed-by: Bertrand Marquis Reviewed-by: Julien Grall --- xen/include/asm-arm/early_printk.h | 1 + 1 file changed, 1 insertion(+) diff --git a/xen/include/asm-arm/early_printk.h b/xen/include/asm-arm/early= _printk.h index d5485decfa..8dc911cf48 100644 --- a/xen/include/asm-arm/early_printk.h +++ b/xen/include/asm-arm/early_printk.h @@ -10,6 +10,7 @@ #ifndef __ARM_EARLY_PRINTK_H__ #define __ARM_EARLY_PRINTK_H__ =20 +#include =20 #ifdef CONFIG_EARLY_PRINTK =20 --=20 2.29.0