diff options
author | Sean Rhodes <sean@starlabs.systems> | 2022-03-04 16:05:11 -0700 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2022-03-04 23:31:43 +0000 |
commit | 4adc364c75b556eb0b741332f08c0aceb5e2cb0a (patch) | |
tree | db55c84c959e5a0a4d11f97cbf68eb73d3ac5485 | |
parent | 091b6a11970a447106aadb6538046a85d3f29df5 (diff) | |
download | edk2-4adc364c75b556eb0b741332f08c0aceb5e2cb0a.tar.gz edk2-4adc364c75b556eb0b741332f08c0aceb5e2cb0a.tar.bz2 edk2-4adc364c75b556eb0b741332f08c0aceb5e2cb0a.zip |
UefiPayloadPkg: Fix case of protocol
Fix case match in <Protocol/MpService.h> to avoid build failure on
Linux.
Cc: Guo Dong <guo.dong@intel.com>
Cc: Ray Ni <ray.ni@intel.com>
Cc: Maurice Ma <maurice.ma@intel.com>
Cc: Benjamin You <benjamin.you@intel.com>
Signed-off-by: Sean Rhodes <sean@starlabs.systems>
Reviewed-by: Guo Dong <guo.dong@intel.com>
-rw-r--r-- | UefiPayloadPkg/BlSupportSmm/BlSupportSmm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/UefiPayloadPkg/BlSupportSmm/BlSupportSmm.h b/UefiPayloadPkg/BlSupportSmm/BlSupportSmm.h index 15e604d514..b82f632556 100644 --- a/UefiPayloadPkg/BlSupportSmm/BlSupportSmm.h +++ b/UefiPayloadPkg/BlSupportSmm/BlSupportSmm.h @@ -22,7 +22,7 @@ SPDX-License-Identifier: BSD-2-Clause-Patent #include <Library/PciLib.h>
#include <Protocol/SmmSwDispatch2.h>
#include <Protocol/SmmAccess2.h>
-#include <protocol/MpService.h>
+#include <Protocol/MpService.h>
#include <Library/UefiBootServicesTableLib.h>
#include <Register/Intel/ArchitecturalMsr.h>
#include <Guid/SmmRegisterInfoGuid.h>
|