diff options
author | Michael D Kinney <michael.d.kinney@intel.com> | 2019-04-30 12:03:36 -0700 |
---|---|---|
committer | Michael D Kinney <michael.d.kinney@intel.com> | 2019-04-30 16:39:34 -0700 |
commit | ba1362d882e9726c40ed99edbff03937fee3b1b0 (patch) | |
tree | d19c54f14dea57386463661e02b724ee4d23e25c /UefiCpuPkg | |
parent | 6dd88437b1d9a1da3676d1516ebf0cc16f7229df (diff) | |
download | edk2-ba1362d882e9726c40ed99edbff03937fee3b1b0.tar.gz edk2-ba1362d882e9726c40ed99edbff03937fee3b1b0.tar.bz2 edk2-ba1362d882e9726c40ed99edbff03937fee3b1b0.zip |
UefiCpuPkg/CpuMpPei: Add missing CpuLib class
The CpuMpPei module uses a services from the CpuLib class,
but the CpuLib class is missing from the INF file. This
update is required to use the new MpInitLibUp instance that
does not use the CpuLib class.
Cc: Eric Dong <eric.dong@intel.com>
Cc: Ray Ni <ray.ni@intel.com>
Cc: Laszlo Ersek <lersek@redhat.com>
Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com>
Diffstat (limited to 'UefiCpuPkg')
-rw-r--r-- | UefiCpuPkg/CpuMpPei/CpuMpPei.inf | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/UefiCpuPkg/CpuMpPei/CpuMpPei.inf b/UefiCpuPkg/CpuMpPei/CpuMpPei.inf index 14ec75f254..4fc4ea77ba 100644 --- a/UefiCpuPkg/CpuMpPei/CpuMpPei.inf +++ b/UefiCpuPkg/CpuMpPei/CpuMpPei.inf @@ -1,7 +1,7 @@ ## @file
# CPU driver installs CPU PI Multi-processor PPI.
#
-# Copyright (c) 2015 - 2018, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2015 - 2019, Intel Corporation. All rights reserved.<BR>
# SPDX-License-Identifier: BSD-2-Clause-Patent
#
##
@@ -43,6 +43,7 @@ CpuExceptionHandlerLib
MpInitLib
BaseMemoryLib
+ CpuLib
[Ppis]
gEfiPeiMpServicesPpiGuid ## PRODUCES
|