From ff0edeaaa86f24714912129c7ff3f14d4a5ef6a2 Mon Sep 17 00:00:00 2001 From: Damien-Chen Date: Fri, 24 Oct 2025 23:15:58 +0800 Subject: [PATCH] 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 --- StandaloneMmPkg/Core/Dispatcher.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/StandaloneMmPkg/Core/Dispatcher.c b/StandaloneMmPkg/Core/Dispatcher.c index 086532e847..403c374336 100644 --- a/StandaloneMmPkg/Core/Dispatcher.c +++ b/StandaloneMmPkg/Core/Dispatcher.c @@ -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;