diff options
Diffstat (limited to 'BeagleBoardPkg/Library/ResetSystemLib/ResetSystemLib.c')
-rw-r--r-- | BeagleBoardPkg/Library/ResetSystemLib/ResetSystemLib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BeagleBoardPkg/Library/ResetSystemLib/ResetSystemLib.c b/BeagleBoardPkg/Library/ResetSystemLib/ResetSystemLib.c index 0a2cb836e4..706a19b273 100644 --- a/BeagleBoardPkg/Library/ResetSystemLib/ResetSystemLib.c +++ b/BeagleBoardPkg/Library/ResetSystemLib/ResetSystemLib.c @@ -125,7 +125,7 @@ LibResetSystem ( switch (ResetType) {
case EfiResetWarm:
//Perform warm reset of the system by jumping to the begining of the FV
- StartOfFv = (CALL_STUB)(UINTN)PcdGet32(PcdFlashFvMainBase);
+ StartOfFv = (CALL_STUB)(UINTN)PcdGet32(PcdFvBaseAddress);
StartOfFv ();
break;
case EfiResetCold:
|