From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-wm1-f65.google.com (mail-wm1-f65.google.com [209.85.128.65]) by mx.groups.io with SMTP id smtpd.web10.2241.1582627507505913796 for ; Tue, 25 Feb 2020 02:45:07 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@linaro.org header.s=google header.b=rJVrSTCb; spf=pass (domain: linaro.org, ip: 209.85.128.65, mailfrom: ard.biesheuvel@linaro.org) Received: by mail-wm1-f65.google.com with SMTP id c84so2611091wme.4 for ; Tue, 25 Feb 2020 02:45:07 -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=TVi3iQb9oiZUrEeeASiMtvcsnBTQHPJ1+kkelZ+E8Ho=; b=rJVrSTCbJsVaapMIhiKy6vmz2koP+YNmZcXY3jt8K5+tpGPOQ02UXCsD3twNWNrjOy RtSxx5+H5Nv1ft5AblTF3aVbJtJ2SmgsouQfaxSK4cexyhn34Yfv+93aF+Nj5CSzPLUG 98yx9t0fEK0wi9H1RbVjq36nEU/GyUI8PlvJTUkXxZh0Jks0OzrAzlDozsvc3HUQnbT3 k1TjAeNKFMEq9nJraViE6uFRY4dh7TI5c6yYg9rVQZfWCACnm+TvI44Y4wJk3mfw8UYf qzaix6+Zp6QPhYFKMJk6X12ecQN5kesHpafnsic+zKMeqmCFQ7TYVX9yoykGAAFMhX0D 6TXg== 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=TVi3iQb9oiZUrEeeASiMtvcsnBTQHPJ1+kkelZ+E8Ho=; b=rDipy5FYInohdBXFAJrHEHqIKE0J5YmtvTqt9ZfQM33dU/+1tEqAWkfafNoI6g0oir mQJU1J2ZwCIkSFwfH1jrTtazvYfgqatYwKfJshnHZOswSeB+hApPGHJ8P3MeJhJuT4Nv LRMDGpSxrhy0ZWnDGYxcWa7otYP/SZJYk3WTmgQewLCDf8IQvSR4iL5h1HEndPukgTp0 2NEOttov0L2oR2VW/exSf57Wv9AjVLUlkRolY+jj56qc255M9JyYWlmF350fBl6sNQaz 7JsR9HM3l+6xBS7GHognbwRKXUthWv+tI36qQAdmVsLYd2f7fyRflHYCpYGdUk9nvTPE SaPw== X-Gm-Message-State: APjAAAXpkoy50ILgzkrDvVtm20k+wfpWGn3wzGEmEWNf2N//+zvkGdrl WuI1j5d2VJ4/uuyj16ReDG9pAZaLv/mTwA== X-Google-Smtp-Source: APXvYqzY94EeuFAnvhKOJSOK/M13e1XUU3DIm2vbZh1bu0ceAZDJqWhqopjTo0Gqb/Fav2rKbxjfOQ== X-Received: by 2002:a1c:9646:: with SMTP id y67mr4512951wmd.42.1582627505843; Tue, 25 Feb 2020 02:45:05 -0800 (PST) Return-Path: Received: from e123331-lin.home ([2a01:cb1d:112:6f00:816e:ff0d:fb69:f613]) by smtp.gmail.com with ESMTPSA id g14sm13218913wrv.58.2020.02.25.02.45.04 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 25 Feb 2020 02:45:04 -0800 (PST) From: "Ard Biesheuvel" To: devel@edk2.groups.io Cc: Ard Biesheuvel , lersek@redhat.com, eric.auger@redhat.com, philmd@redhat.com, marcandre.lureau@redhat.com, stefanb@linux.ibm.com, leif@nuviainc.com Subject: [PATCH v2 2/5] ArmVirtPkg/PlatformPeiLib: make PcdLib dependency explicit in .INF Date: Tue, 25 Feb 2020 11:44:46 +0100 Message-Id: <20200225104449.22453-3-ard.biesheuvel@linaro.org> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200225104449.22453-1-ard.biesheuvel@linaro.org> References: <20200225104449.22453-1-ard.biesheuvel@linaro.org> We currently include PcdLib.h in PlatformPeiLib, without declaring this dependency in its .INF description. Since all the PCDs we use resolve to fixed type in practice, this does not really matter at the moment, but since we will be adding dynamic PCD references in a subsequent patch, let's make the PcdLib dependency explicit, so that its dispatch is guaranteed to be ordered correctly with respect to the provider of the dynamic PCD PPI. Signed-off-by: Ard Biesheuvel --- ArmVirtPkg/Library/PlatformPeiLib/PlatformPeiLib.inf | 1 + 1 file changed, 1 insertion(+) diff --git a/ArmVirtPkg/Library/PlatformPeiLib/PlatformPeiLib.inf b/ArmVirtPkg/Library/PlatformPeiLib/PlatformPeiLib.inf index 46db117ac28e..5428040f121d 100644 --- a/ArmVirtPkg/Library/PlatformPeiLib/PlatformPeiLib.inf +++ b/ArmVirtPkg/Library/PlatformPeiLib/PlatformPeiLib.inf @@ -29,6 +29,7 @@ [LibraryClasses] DebugLib HobLib FdtLib + PcdLib [FixedPcd] gArmTokenSpaceGuid.PcdFvSize -- 2.17.1