From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mx.groups.io with SMTP id smtpd.web09.2948.1631159223732885616 for ; Wed, 08 Sep 2021 20:47:03 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="body hash did not verify" header.i=@linux.microsoft.com header.s=default header.b=mobeslay; spf=pass (domain: linux.microsoft.com, ip: 13.77.154.182, mailfrom: mikuback@linux.microsoft.com) Received: from localhost.localdomain (c-73-27-179-174.hsd1.fl.comcast.net [73.27.179.174]) by linux.microsoft.com (Postfix) with ESMTPSA id C4C3420B6C51; Wed, 8 Sep 2021 20:47:02 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com C4C3420B6C51 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1631159223; bh=ismYcqEsxstKv+Tfd+NlouoWfO5NiSCOv2k4tZ5U9lg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=mobeslaygOxaJHNvm3Gh8NHj7cDGgJgIO32Qy7khpf146lWuayfLevo4sWXcDPitS lNSHEid/laUlc4jkJuTLFDC5Zx3VTg8Gfk7hX4eu6TR6iNzu67lJxsbIukgE6ZTaz6 s9zaHcS72FWYA+dS1eDI06u+c+s44LMzaecv6s6o= From: "Michael Kubacki" To: devel@edk2.groups.io Cc: Jian J Wang , Liming Gao , Dandan Bi Subject: [PATCH v1 1/3] MdeModulePkg/Core/Pei: Fix typo in function descriptions Date: Wed, 8 Sep 2021 23:45:59 -0400 Message-Id: <20210909034601.699-2-mikuback@linux.microsoft.com> X-Mailer: git-send-email 2.28.0.windows.1 In-Reply-To: <20210909034601.699-1-mikuback@linux.microsoft.com> References: <20210909034601.699-1-mikuback@linux.microsoft.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Michael Kubacki Corrects a typo in the return value description of MigratePeim() and EvacuateTempRam(): "Succesfully" to "Successfully" Cc: Jian J Wang Cc: Liming Gao Cc: Dandan Bi Signed-off-by: Michael Kubacki --- MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c | 4 ++-- MdeModulePkg/Core/Pei/PeiMain.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c b/MdeModulePkg= /Core/Pei/Dispatcher/Dispatcher.c index 61d4b67c64b9..8780297a77fc 100644 --- a/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c +++ b/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c @@ -958,7 +958,7 @@ PeiCheckAndSwitchStack ( @param PeimFileHandle Pointer to the FFS file header of the imag= e. @param MigratedFileHandle Pointer to the FFS file header of the migr= ated image. =20 - @retval EFI_SUCCESS Sucessfully migrated the PEIM to permanent= memory. + @retval EFI_SUCCESS Successfully migrated the PEIM to permanen= t memory. =20 **/ EFI_STATUS @@ -1120,7 +1120,7 @@ MigratePeimsInFv ( environment, such as the size and location of t= emporary RAM, the stack location and the BFV location. =20 - @retval EFI_SUCCESS Succesfully migrated installed FVs from = temporary RAM to permanent memory. + @retval EFI_SUCCESS Successfully migrated installed FVs from= temporary RAM to permanent memory. @retval EFI_OUT_OF_RESOURCES Insufficient memory exists to allocate n= eeded pages. =20 **/ diff --git a/MdeModulePkg/Core/Pei/PeiMain.h b/MdeModulePkg/Core/Pei/PeiM= ain.h index daa48b4c5f37..0046f19447ba 100644 --- a/MdeModulePkg/Core/Pei/PeiMain.h +++ b/MdeModulePkg/Core/Pei/PeiMain.h @@ -419,7 +419,7 @@ MigratePeim ( environment, such as the size and location of t= emporary RAM, the stack location and the BFV location. =20 - @retval EFI_SUCCESS Succesfully migrated installed FVs from = temporary RAM to permanent memory. + @retval EFI_SUCCESS Successfully migrated installed FVs from= temporary RAM to permanent memory. @retval EFI_OUT_OF_RESOURCES Insufficient memory exists to allocate n= eeded pages. =20 **/ --=20 2.28.0.windows.1