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:
Damien-Chen 2025-10-24 23:15:58 +08:00 committed by mergify[bot]
parent 64a1aca08f
commit ff0edeaaa8

View file

@ -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;