From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-wr1-f67.google.com (mail-wr1-f67.google.com [209.85.221.67]) by mx.groups.io with SMTP id smtpd.web09.598.1582743921844490485 for ; Wed, 26 Feb 2020 11:05:22 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@linaro.org header.s=google header.b=G4VOE3o8; spf=pass (domain: linaro.org, ip: 209.85.221.67, mailfrom: ard.biesheuvel@linaro.org) Received: by mail-wr1-f67.google.com with SMTP id r17so69139wrj.7 for ; Wed, 26 Feb 2020 11:05:21 -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=kEF4aiP3sjnxuq3KAx7feYo4l4Gr1fyd2NBppWboySo=; b=G4VOE3o8MRPSgCFv9Z9eJzFfHfKkzTlvnpuNdLniAkWJz5BZGrJvlyEYqO48OExHVT ylMzDrO6lLcgwSdxtQZhpmmzqmlC+VraFqQEYxWOMQjK7RFPoXDoCMDwilJlKxY+UcP3 ofhH0K37qZtqxim7VfR0hqgysKGmhKjMgepUHC4G2joLWmR+gOWjtvLYryLsfxJwXEe3 hFxgxe6W+bXyDW/2T04NCY+w+4DgmH/D4v2pDAeyzZ5gstCA0nKStMsdTLqFdk6kZ/vg 6V8wtep9LiofXVJXBfZH/j79gBVSjqYL3s2LI2ej6qDs4Z9LjczNrHNASAEAfZVbeMF1 Rxpg== 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=kEF4aiP3sjnxuq3KAx7feYo4l4Gr1fyd2NBppWboySo=; b=iEXwBDyJC64RUu/ntCOFK4QEVdf4nCzO2bfSDBchoGTozTmKM8eJqLPvXhB3L4Prnh CEvI6PO5ktBvgXlWKCD/EwrxpB0uyOwJJR5N1bBB2iuVk7/EXDnYJtAjxUkKGznS8qv/ kFmhmym9vm6r3LfOssoeljL3VNoVlmjinUuOEaxPrRVW4pmYD0xUh/K5D8fMSEX+I6qM nMnnM9f4eq+j/XPhgWvYwTlMwOcdWxpwg65GTp2Rb/E96bQUG5lhph+jcuMMfRqJ+miS ydIy7P8d/EPxCuzECBBzur0BVriNcZrcDE0+EqQZ6uGzOK3druHPdhWS/dAueq2Gf593 PcoQ== X-Gm-Message-State: APjAAAVqRUg5wIso8DxBbRIUTBWRcg0+NYrUoH5yz9hnHoXeJMK60vRN 6HG5OyQoJvf23QozqW3nN1T48Y2kEb5qvw== X-Google-Smtp-Source: APXvYqwyyYSE4SNxOnc1BH+r+lnnCj0slJWqFP9svkqdJmoVGQL5JTLVvenrx+b7gTbVug9UFsr6Pg== X-Received: by 2002:adf:fdc2:: with SMTP id i2mr124318wrs.166.1582743920206; Wed, 26 Feb 2020 11:05:20 -0800 (PST) Return-Path: Received: from e123331-lin.home ([2a01:cb1d:112:6f00:816e:ff0d:fb69:f613]) by smtp.gmail.com with ESMTPSA id z1sm3932823wmf.42.2020.02.26.11.05.19 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 26 Feb 2020 11:05:19 -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 v3 2/9] ArmVirtPkg/PlatformPeiLib: make PcdLib dependency explicit in .INF Date: Wed, 26 Feb 2020 20:05:07 +0100 Message-Id: <20200226190514.31395-3-ard.biesheuvel@linaro.org> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200226190514.31395-1-ard.biesheuvel@linaro.org> References: <20200226190514.31395-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 Reviewed-by: Laszlo Ersek --- 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