From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=pass header.i=@linaro.org header.s=google header.b=TVZNV4Ms; spf=pass (domain: linaro.org, ip: 209.85.221.50, mailfrom: baptiste.gerondeau@linaro.org) Received: from mail-wr1-f50.google.com (mail-wr1-f50.google.com [209.85.221.50]) by groups.io with SMTP; Wed, 18 Sep 2019 09:05:58 -0700 Received: by mail-wr1-f50.google.com with SMTP id v8so44400wrt.2 for ; Wed, 18 Sep 2019 09:05:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=+O62Y1dgMmC9qx0itaWrrcBEDBlNJlPyBL8NRtEmywk=; b=TVZNV4MsSwjt/Z0A4EwZmECkGsuAgm67GVJodjMspNRnVmUEvdx9W0z3J+uozpqb4G JZBeYGsajLEkRuroNp7rx/yCFNd/Yd0rUj5jVkn7xCCjrD2BqfgR7LaF7rfD78Xl7o6G 1dV2bSmp1VIdKgEgV7pOF+Xsy0ABJYmx43mGTOK6BcC0ePK5MdMJZUFhwcOSdIv5w3OA 4teZicy6B2vSvZhLKuuFexblAC5rz5gqwRXmqWTn+8AdGVkOyMXd+5Kb6PPF2P3pj33C OFryhAS7yBp9CP+7phv9JezCcFGhYazPZs2gzKQgGzJxtaWsmHUHToi7qTKur6XKyI2a zOgg== 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=+O62Y1dgMmC9qx0itaWrrcBEDBlNJlPyBL8NRtEmywk=; b=eopCW6LiR//4kHr42hdqigh92EU32kvWPzTp/sS1LWZqfAmajmQMB8oQk8dZNAKJev 3dYdeY17AXN2QyHnCQFp5K92QuXXiPOLbo1BpGuSrc8uBtqSwLUkA+skEKwOoeAkWoso 4T41a+hrqpO2EXCGcqKnSIsZmD6m8CcD5aEi31p3PD0MN+44LajEGYgoggYqGfoT4EsF sZL9IGC7kSmWfwRRWSYqJRpcmdec00RQEZhmsXCIx+i0qyQrHfpCnAp3WVaOxp3k3l3I V1FNCHO4QHNGAuaWwJciz0x5KUjzkT31UJGa8C5WPylyUDzkCs+yjA+xZPWcwCpMlNqE 0MUQ== X-Gm-Message-State: APjAAAV6bQOvbXJpY9FhwEhR+zr7KdUyC5+IUYBzjLz8kFIgMsHUsC7M jYCt+dgDnLMbsPcso/r+/755BZvbVA8mbQ== X-Google-Smtp-Source: APXvYqy+Oq5C+QM+N8CkezAO6YnzceTx3fRwhVZ8YmbsIXvFgUoi7tRjeLZ3yB30rEB0LYVY8CDNaw== X-Received: by 2002:adf:f303:: with SMTP id i3mr3950063wro.242.1568822755936; Wed, 18 Sep 2019 09:05:55 -0700 (PDT) Return-Path: Received: from localhost.localdomain (176-169-168-38.abo.bbox.fr. [176.169.168.38]) by smtp.gmail.com with ESMTPSA id y186sm5035863wmb.41.2019.09.18.09.05.54 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 18 Sep 2019 09:05:55 -0700 (PDT) From: "Baptiste Gerondeau" To: devel@edk2.groups.io Cc: ard.biesheuvel@linaro.org, leif.lindholm@linaro.org, michael.d.kinney@intel.com, liming.gao@intel.com, shenglei.zhang@intel.com, Baptiste Gerondeau Subject: [PATCH 1/3] ArmPkg/MdePkg : Unify INF files format Date: Wed, 18 Sep 2019 18:05:22 +0200 Message-Id: X-Mailer: git-send-email 2.23.0 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Baptiste GERONDEAU Add a space between the '|' and the name of the toolchain to use, as is the case in all other INF files. Note that I did not touch the RVCT lines, since a following commit in the set will address those. Signed-off-by: Baptiste Gerondeau --- ArmPkg/Library/ArmMmuLib/ArmMmuBaseLib.inf | 2 +- MdePkg/Library/BaseMemoryLibOptDxe/BaseMemoryLibOptDxe.inf | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ArmPkg/Library/ArmMmuLib/ArmMmuBaseLib.inf b/ArmPkg/Library/Ar= mMmuLib/ArmMmuBaseLib.inf index f4fecbb4098a..33dddf1e2b97 100644 --- a/ArmPkg/Library/ArmMmuLib/ArmMmuBaseLib.inf +++ b/ArmPkg/Library/ArmMmuLib/ArmMmuBaseLib.inf @@ -22,7 +22,7 @@ [Sources.AARCH64] =0D [Sources.ARM]=0D Arm/ArmMmuLibCore.c=0D - Arm/ArmMmuLibV7Support.S |GCC =0D + Arm/ArmMmuLibV7Support.S | GCC=0D Arm/ArmMmuLibV7Support.asm |RVCT =0D =0D [Packages]=0D diff --git a/MdePkg/Library/BaseMemoryLibOptDxe/BaseMemoryLibOptDxe.inf b/M= dePkg/Library/BaseMemoryLibOptDxe/BaseMemoryLibOptDxe.inf index e4e3d532e7b8..d38e1397eee1 100644 --- a/MdePkg/Library/BaseMemoryLibOptDxe/BaseMemoryLibOptDxe.inf +++ b/MdePkg/Library/BaseMemoryLibOptDxe/BaseMemoryLibOptDxe.inf @@ -79,11 +79,11 @@ [Defines.ARM, Defines.AARCH64] LIBRARY_CLASS =3D BaseMemoryLib|DXE_CORE DXE_DRIVER DXE_RUNTIME_DRIVER U= EFI_DRIVER UEFI_APPLICATION=0D =0D [Sources.ARM]=0D - Arm/ScanMem.S |GCC=0D - Arm/SetMem.S |GCC=0D - Arm/CopyMem.S |GCC=0D - Arm/CompareMem.S |GCC=0D - Arm/CompareGuid.S |GCC=0D + Arm/ScanMem.S | GCC=0D + Arm/SetMem.S | GCC=0D + Arm/CopyMem.S | GCC=0D + Arm/CompareMem.S | GCC=0D + Arm/CompareGuid.S | GCC=0D =0D Arm/ScanMem.asm |RVCT=0D Arm/SetMem.asm |RVCT=0D --=20 2.23.0