Skip to content

Commit

Permalink
Minor fixes for #224
Browse files Browse the repository at this point in the history
  • Loading branch information
PaddyDengKC authored and ChaselChiu committed Oct 29, 2024
1 parent 67e5007 commit 6d4a02e
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
1 change: 1 addition & 0 deletions Platform/Intel/MinPlatformPkg/MinPlatformPkg.dsc
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@

MinPlatformPkg/PlatformInit/ReportFv/ReportFvPei.inf
MinPlatformPkg/PlatformInit/PlatformInitPei/PlatformInitPreMem.inf
MinPlatformPkg/PlatformInit/PlatformInitPei/PlatformInitPreMemNonFsp.inf
MinPlatformPkg/PlatformInit/PlatformInitPei/PlatformInitPostMem.inf
MinPlatformPkg/PlatformInit/PlatformInitDxe/PlatformInitDxe.inf
MinPlatformPkg/PlatformInit/PlatformInitSmm/PlatformInitSmm.inf
Expand Down
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);
}
}
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/** @file FspSupportNull.c
Provides dummy FSP mode selection value that will always be 0.
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 6d4a02e

Please sign in to comment.