From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=2a00:1450:4864:20::342; helo=mail-wm1-x342.google.com; envelope-from=leif.lindholm@linaro.org; receiver=edk2-devel@lists.01.org Received: from mail-wm1-x342.google.com (mail-wm1-x342.google.com [IPv6:2a00:1450:4864:20::342]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 3E88821196215 for ; Tue, 27 Nov 2018 04:26:40 -0800 (PST) Received: by mail-wm1-x342.google.com with SMTP id q26so21902874wmf.5 for ; Tue, 27 Nov 2018 04:26:40 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id; bh=5ys+icRPbVR7zvNScFKbsst2QbkAXhg4rHPNSYyeMPE=; b=CuB6apryW3uyqUIJFmGdmsdiR/YTpqAvnYlAY4vWZdXVzaxOZNHJaJF2cOTSgL36KU Z9/BWdkpUNlpCBQjvujqzWgqml+SqR7cmM2r/aZ3qpVM3oXPYAjvkuUWcWZzDPDlcp8a TdZ5WxpWSJaNgl6JyWp4K1b6+gKBdV+i28Z8g= 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=5ys+icRPbVR7zvNScFKbsst2QbkAXhg4rHPNSYyeMPE=; b=CUbSM2yA8ESYUq7THC4BkxmdNKfbXPq3h8rgbofORjPZdlRn9CWNIrIrBIIhCpRscX QrQ/gxmwP2ahvHyTu9eIPO4uDPz5Rp2rbnKzztoPSK24dbyUwjKbxIGqFmZipHKTCZyq rsKzAbGDdzquJpP/cmljKB6UfeE+rSSTMcv+w/WdFatikOfOwXFRNdVtfNj/1MDq4i0W BOhbxG0BFA3D6aJcfNKa/gR9mDHaVUoR1S2dwSWMkBl2p+g1G8rq4JT3oi88cUNKP7bB ZmUtPmduH/GJ/h1ZqZ1LVfSPhAYOMaxls7qTJNRCpDPYz73TgWYWcz6cymVTe58CcZ9J Aqjg== X-Gm-Message-State: AGRZ1gI1FBmsEMOeW5RxO9cE49O/G7pgdxeiDuHKnN92JtvkggBG1dqv MY5nRgLD5aOIoURGiBmB/9KuPIxiUqk= X-Google-Smtp-Source: AJdET5da9OCcdlV7kCEnSwQ7IA024LXp8o662Kg69krcQWlnKirj02YqeLRSbnrdVX69YTDZUedsHg== X-Received: by 2002:a1c:3e84:: with SMTP id l126-v6mr26167972wma.91.1543321598351; Tue, 27 Nov 2018 04:26:38 -0800 (PST) Received: from vanye.hemma.eciton.net (cpc92302-cmbg19-2-0-cust304.5-4.cable.virginm.net. [82.1.209.49]) by smtp.gmail.com with ESMTPSA id 125-v6sm5199713wmr.22.2018.11.27.04.26.37 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 27 Nov 2018 04:26:37 -0800 (PST) From: Leif Lindholm To: edk2-devel@lists.01.org Date: Tue, 27 Nov 2018 12:26:36 +0000 Message-Id: <20181127122636.12603-1-leif.lindholm@linaro.org> X-Mailer: git-send-email 2.11.0 Subject: [PATCH] ArmPkg: fix StandaloneMmMmuLib subdirectory case X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Nov 2018 12:26:40 -0000 While this isn't the only Aarch64 directory in the tree, let's keep from adding more of them. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Leif Lindholm --- ArmPkg/Library/StandaloneMmMmuLib/ArmMmuStandaloneMmLib.inf | 2 +- .../StandaloneMmMmuLib/{Aarch64 => AArch64}/ArmMmuStandaloneMmLib.c | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename ArmPkg/Library/StandaloneMmMmuLib/{Aarch64 => AArch64}/ArmMmuStandaloneMmLib.c (100%) diff --git a/ArmPkg/Library/StandaloneMmMmuLib/ArmMmuStandaloneMmLib.inf b/ArmPkg/Library/StandaloneMmMmuLib/ArmMmuStandaloneMmLib.inf index d589b23603..7219b59e6f 100644 --- a/ArmPkg/Library/StandaloneMmMmuLib/ArmMmuStandaloneMmLib.inf +++ b/ArmPkg/Library/StandaloneMmMmuLib/ArmMmuStandaloneMmLib.inf @@ -22,7 +22,7 @@ [Defines] PI_SPECIFICATION_VERSION = 0x00010032 [Sources.AARCH64] - Aarch64/ArmMmuStandaloneMmLib.c + AArch64/ArmMmuStandaloneMmLib.c [Packages] ArmPkg/ArmPkg.dec diff --git a/ArmPkg/Library/StandaloneMmMmuLib/Aarch64/ArmMmuStandaloneMmLib.c b/ArmPkg/Library/StandaloneMmMmuLib/AArch64/ArmMmuStandaloneMmLib.c similarity index 100% rename from ArmPkg/Library/StandaloneMmMmuLib/Aarch64/ArmMmuStandaloneMmLib.c rename to ArmPkg/Library/StandaloneMmMmuLib/AArch64/ArmMmuStandaloneMmLib.c -- 2.11.0