mirror of
https://github.com/tianocore/edk2
synced 2026-08-27 00:23:19 -04:00
StandaloneMmPkg/Core/Dispatcher: Use more generic MMRAM term in comment
In StandaloneMmPkg/Core/Dispatcher.c, a comment referred to SMRAM. SMRAM is specific to the x86 architecture. The StandaloneMmPkg is designed to be architecture-agnostic. This commit updates the comment to use the more generic term MMRAM (Management Mode RAM) to better reflect the nature of the package. Signed-off-by: Damien Chen <inkfan130924783@gmail.com>
This commit is contained in:
parent
64a1aca08f
commit
ff0edeaaa8
1 changed files with 2 additions and 2 deletions
|
|
@ -125,7 +125,7 @@ BOOLEAN gDispatcherRunning = FALSE;
|
|||
BOOLEAN gRequestDispatch = FALSE;
|
||||
|
||||
/**
|
||||
Loads an EFI image into SMRAM.
|
||||
Loads an EFI image into MMRAM.
|
||||
|
||||
@param DriverEntry EFI_MM_DRIVER_ENTRY instance
|
||||
@param ImageContext Allocated ImageContext to be filled out by this function
|
||||
|
|
@ -225,7 +225,7 @@ MmLoadImage (
|
|||
|
||||
//
|
||||
// Fill in the remaining fields of the Loaded Image Protocol instance.
|
||||
// Note: ImageBase is an SMRAM address that can not be accessed outside of SMRAM if SMRAM window is closed.
|
||||
// Note: ImageBase is an MMRAM address that can not be accessed outside of MMRAM if MMRAM window is closed.
|
||||
//
|
||||
DriverEntry->LoadedImage.Revision = EFI_LOADED_IMAGE_PROTOCOL_REVISION;
|
||||
DriverEntry->LoadedImage.ParentHandle = NULL;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue