diff options
-rw-r--r-- | src/vendorcode/amd/pi/00670F00/binaryPI/AGESA.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/vendorcode/amd/pi/00670F00/binaryPI/AGESA.c b/src/vendorcode/amd/pi/00670F00/binaryPI/AGESA.c index 32036bf68b..c92790e79c 100644 --- a/src/vendorcode/amd/pi/00670F00/binaryPI/AGESA.c +++ b/src/vendorcode/amd/pi/00670F00/binaryPI/AGESA.c @@ -210,6 +210,20 @@ AmdS3LateRestore ( } /********************************************************************** + * Interface call: AmdS3FinalRestore + **********************************************************************/ +AGESA_STATUS +AmdS3FinalRestore ( + IN OUT AMD_S3FINAL_PARAMS *S3FinalParams + ) +{ + MODULE_ENTRY Dispatcher = agesa_get_dispatcher(); + S3FinalParams->StdHeader.Func = AMD_S3FINAL_RESTORE; + if (!Dispatcher) return AGESA_UNSUPPORTED; + return Dispatcher(S3FinalParams); +} + +/********************************************************************** * Interface call: AmdInitRtb **********************************************************************/ AGESA_STATUS |