diff options
-rw-r--r-- | IntelFsp2Pkg/Include/Library/FspCommonLib.h | 6 | ||||
-rw-r--r-- | IntelFsp2Pkg/Library/BaseFspCommonLib/FspCommonLib.c | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/IntelFsp2Pkg/Include/Library/FspCommonLib.h b/IntelFsp2Pkg/Include/Library/FspCommonLib.h index 0bb0c53786..e13d0c3346 100644 --- a/IntelFsp2Pkg/Include/Library/FspCommonLib.h +++ b/IntelFsp2Pkg/Include/Library/FspCommonLib.h @@ -234,13 +234,13 @@ GetFspInfoHeaderFromApiContext ( );
/**
- This function gets the VPD data pointer.
+ This function gets the CfgRegion data pointer.
- @return VpdDataRgnPtr VPD data pointer.
+ @return CfgRegion data pointer.
**/
VOID *
EFIAPI
-GetFspVpdDataPointer (
+GetFspCfgRegionDataPointer (
VOID
);
diff --git a/IntelFsp2Pkg/Library/BaseFspCommonLib/FspCommonLib.c b/IntelFsp2Pkg/Library/BaseFspCommonLib/FspCommonLib.c index efd55f464c..151b189343 100644 --- a/IntelFsp2Pkg/Library/BaseFspCommonLib/FspCommonLib.c +++ b/IntelFsp2Pkg/Library/BaseFspCommonLib/FspCommonLib.c @@ -425,13 +425,13 @@ GetFspInfoHeaderFromApiContext ( }
/**
- This function gets the VPD data pointer.
+ This function gets the CfgRegion data pointer.
- @return VpdDataRgnPtr VPD data pointer.
+ @return CfgRegion data pointer.
**/
VOID *
EFIAPI
-GetFspVpdDataPointer (
+GetFspCfgRegionDataPointer (
VOID
)
{
|