From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=2a00:1450:400c:c09::244; helo=mail-wm0-x244.google.com; envelope-from=ard.biesheuvel@linaro.org; receiver=edk2-devel@lists.01.org Received: from mail-wm0-x244.google.com (mail-wm0-x244.google.com [IPv6:2a00:1450:400c:c09::244]) (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 4E4502035BB1C for ; Fri, 17 Nov 2017 08:05:14 -0800 (PST) Received: by mail-wm0-x244.google.com with SMTP id v186so7405319wma.2 for ; Fri, 17 Nov 2017 08:09:25 -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:in-reply-to:references; bh=gN89ZOUtoJ0kYY2bMYNYhMXMhYxbPHNRw1Qq6SkO0mk=; b=NEsXJ+Z4rXtFyD/GT5xcpdvPs7bgFDKy7ul52mlR6Q/oOojTHVTtyboumnVq3oters aQ3kpaKk4baw+rUAx7XUTXGkQFIW17wis6pbX+rZd38/UOwMBY7gx9dLWUoD9WF/Dd77 euAiwlmE5zWNxXQjAuc+B0QG7ME/J1a2bi2ys= 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; bh=gN89ZOUtoJ0kYY2bMYNYhMXMhYxbPHNRw1Qq6SkO0mk=; b=dhmgFrP5ZFtU3sXhWG8dmOj8e0lTM4o/gBFN0NAX5cispmXAEAMnMIdNIUSVY92qsx lf8t9VAfYt235VvWL4F/AZC+XSCjtEWVUozHzaO9TBnDDvBaRIoMCvX/8yZwn3ly0Ow2 NABWOzU5OA8NyGS8rNV211g94+uvf8vZ+eg6Ki1CsHgQQZgWup32D/csszaYyUSrfJEF e8vnhTuHDnWSCEeZXSw2w58TdCVZDWkxV1G+BnzAkqX4ACNdhlUf3eiynQ3zMYcD9NBI EqCOkkg8S+rCh52hcIAaO52RG+u7BHuPyLqPQZx9OV+zoqruUMj+g/jeRMco3gwFqIWi LFhg== X-Gm-Message-State: AJaThX7ZujBWKaXGyppcqGC79sjl/zdUxNiNtJEDSlEn/YzOTGEmubvU MMbsnQrsRt7OM+70x9+WhT5TFu5gVKo= X-Google-Smtp-Source: AGs4zMa29wkj9G+LGljtcUOf+B9a/qGUxMS4rTbeXcpyVOouu6mmP7AGGzYGNvS+RFuriUekc4SF4Q== X-Received: by 10.28.134.73 with SMTP id i70mr4323053wmd.107.1510934963621; Fri, 17 Nov 2017 08:09:23 -0800 (PST) Received: from localhost.localdomain ([160.167.170.128]) by smtp.gmail.com with ESMTPSA id p42sm5575959wrb.28.2017.11.17.08.09.21 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 17 Nov 2017 08:09:22 -0800 (PST) From: Ard Biesheuvel To: edk2-devel@lists.01.org, lersek@redhat.com Cc: leif.lindholm@linaro.org, Ard Biesheuvel Date: Fri, 17 Nov 2017 16:08:59 +0000 Message-Id: <20171117160913.17292-2-ard.biesheuvel@linaro.org> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20171117160913.17292-1-ard.biesheuvel@linaro.org> References: <20171117160913.17292-1-ard.biesheuvel@linaro.org> Subject: [PATCH 01/15] ArmPlatformPkg/ArmPlatformLibNull: remove bogus PCD dependencies X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Nov 2017 16:05:14 -0000 Remove dependencies on gArmTokenSpaceGuid.PcdSystemMemoryBase and gArmTokenSpaceGuid.PcdSystemMemorySize, the presence of which in a [FixedPcd] section makes this module unusable for ArmVirtQemu. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Ard Biesheuvel --- ArmPlatformPkg/Library/ArmPlatformLibNull/ArmPlatformLibNull.inf | 3 --- 1 file changed, 3 deletions(-) diff --git a/ArmPlatformPkg/Library/ArmPlatformLibNull/ArmPlatformLibNull.inf b/ArmPlatformPkg/Library/ArmPlatformLibNull/ArmPlatformLibNull.inf index 97b2a4b6e495..e59aef611a3c 100644 --- a/ArmPlatformPkg/Library/ArmPlatformLibNull/ArmPlatformLibNull.inf +++ b/ArmPlatformPkg/Library/ArmPlatformLibNull/ArmPlatformLibNull.inf @@ -41,9 +41,6 @@ [Sources.AArch64] AArch64/ArmPlatformHelper.S [FixedPcd] - gArmTokenSpaceGuid.PcdSystemMemoryBase - gArmTokenSpaceGuid.PcdSystemMemorySize - gArmTokenSpaceGuid.PcdArmPrimaryCoreMask gArmTokenSpaceGuid.PcdArmPrimaryCore -- 2.11.0