Skip to content

Commit

Permalink
Update for the review suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
PaddyDengKC committed Oct 31, 2024
1 parent 99ab205 commit 514e7bb
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
2 changes: 0 additions & 2 deletions MinPlatformPkg/MinPlatformPkg.dsc
Original file line number Diff line number Diff line change
Expand Up @@ -190,9 +190,7 @@

MinPlatformPkg/PlatformInit/ReportFv/ReportFvPei.inf
MinPlatformPkg/PlatformInit/PlatformInitPei/PlatformInitPreMem.inf
# MU_CHANGE [BEGIN] For MU repo pipeline requirement
MinPlatformPkg/PlatformInit/PlatformInitPei/PlatformInitPreMemNonFsp.inf
# MU_CHANGE [END]
MinPlatformPkg/PlatformInit/PlatformInitPei/PlatformInitPostMem.inf
MinPlatformPkg/PlatformInit/PlatformInitDxe/PlatformInitDxe.inf
MinPlatformPkg/PlatformInit/PlatformInitSmm/PlatformInitSmm.inf
Expand Down
9 changes: 8 additions & 1 deletion MinPlatformPkg/PlatformInit/PlatformInitPei/FspSupport.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/** @file FspSupport.c
Provides FSP mode selection value based on PcdFspModeSelection
Copyright (c) Microsoft Corporation.
SPDX-License-Identifier: BSD-2-Clause-Patent
**/

#include <PiPei.h>

UINT8
Expand All @@ -7,4 +14,4 @@ FspGetModeSelection (
)
{
return PcdGet8 (PcdFspModeSelection);
}
}
9 changes: 8 additions & 1 deletion MinPlatformPkg/PlatformInit/PlatformInitPei/FspSupportNull.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/** @file FspSupport.c
Provides FSP mode selection value based on PcdFspModeSelection
Copyright (c) Microsoft Corporation.
SPDX-License-Identifier: BSD-2-Clause-Patent
**/

#include <PiPei.h>

UINT8
Expand All @@ -7,4 +14,4 @@ FspGetModeSelection (
)
{
return 0;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# Component information file for the Platform Init Pre-Memory PEI module.
#
# Copyright (c) 2017 - 2021, Intel Corporation. All rights reserved.<BR>
# Copyright (c) Microsoft Corporation.
#
# SPDX-License-Identifier: BSD-2-Clause-Patent
#
Expand Down

0 comments on commit 514e7bb

Please sign in to comment.