From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-wm1-f66.google.com (mail-wm1-f66.google.com [209.85.128.66]) by mx.groups.io with SMTP id smtpd.web11.4837.1582814463904636028 for ; Thu, 27 Feb 2020 06:41:04 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@linaro.org header.s=google header.b=F+aZvMrB; spf=pass (domain: linaro.org, ip: 209.85.128.66, mailfrom: ard.biesheuvel@linaro.org) Received: by mail-wm1-f66.google.com with SMTP id c84so3716417wme.4 for ; Thu, 27 Feb 2020 06:41:03 -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 :mime-version:content-transfer-encoding; bh=738Tqp8+hGFRfo9Oaw8CEYuGcf2/sx7GQ3VIU+f9ask=; b=F+aZvMrB7gc6jaVAqVwc+muGDjh4nd5leZanFYwWRSQnHOP9zS1xKIQj8nRaXx0e3d iME8jPMjkT5sklUO6atRwvHq3BZjajlm1PEg3mL0W69kFrXpEiXzsEk170J1D+MwvUWq 9u+OF3F5svQ4axamQhgZn+3Vhv94fZa03j8E9GCTxeriDQzPG6/I4UQOSKVDktFN7S8z dGBa10NJ0yuROzVcVUu1Xa6JvpLYMsAmrWAoxKWdoMPzuuduhzpo0YpGNip9YT/UqUvG JG92x74RQ7kmS42pg8CH9NRxMOndiMnupPGKSuuy3wCjj3WGUJaUmKa6nWJZCNkmRMkX MLJQ== 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=738Tqp8+hGFRfo9Oaw8CEYuGcf2/sx7GQ3VIU+f9ask=; b=G2ffN2s6JrufKd4/t7eJB6yueUtOgNrUhvafmFIbSWBHFY6JYzOEZRnZ5v0gMS3ACh aTruCDC9TYYdzKDevgnExxRW4LxWVYVWG6OphQQUtCs6gUbxDOUCA/KV5ZzkJzUG2ZR/ /+dtrbA/UnIxRd83zu7SuRrdvrAufM9V/1gEzdyY+qQUdm4zer1ZaOjEhTdcH7WmLwXV D8jCPo5Yv5grKrF9lvKGmknQh0vvKZnCCGSa0rvbLo3o2OLrckyz0iGUNNxfcweNkxaY ZD3WwBpwnEKG27pm7LJgrxZQCbNHuQ1v+evBKYzCL6gvUeNpPBOtAwSeUoJV5z7j5RtA o6+Q== X-Gm-Message-State: APjAAAUKoGS1+UKTgz2YtWMepbhlTXbxsPtqOCu1lxSiDbsAJtA48kmd OERWJhOnfIakRz/npTbuBnizhPHSSTI= X-Google-Smtp-Source: APXvYqzOqefVOFC5FZ66tqTMXpSHzz7CQDzAWO1ASS7MXDUW6xekZUX+MJNVfApYKcC3MBedYQIneQ== X-Received: by 2002:a1c:a382:: with SMTP id m124mr5580630wme.90.1582814462222; Thu, 27 Feb 2020 06:41:02 -0800 (PST) Return-Path: Received: from localhost.localdomain (aaubervilliers-682-1-29-142.w90-88.abo.wanadoo.fr. [90.88.192.142]) by smtp.gmail.com with ESMTPSA id k7sm8273575wrq.12.2020.02.27.06.41.00 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 27 Feb 2020 06:41:01 -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 v4 02/11] ArmVirtPkg/PlatformPeiLib: make PcdLib dependency explicit in .INF Date: Thu, 27 Feb 2020 15:40:47 +0100 Message-Id: <20200227144056.56988-3-ard.biesheuvel@linaro.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20200227144056.56988-1-ard.biesheuvel@linaro.org> References: <20200227144056.56988-1-ard.biesheuvel@linaro.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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.20.1