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.web10.118981.1671058392282524055 for ; Wed, 14 Dec 2022 14:53:12 -0800 Authentication-Results: mx.groups.io; dkim=fail reason="body hash did not verify" header.i=@linux.microsoft.com header.s=default header.b=GOzb6zI8; spf=pass (domain: linux.microsoft.com, ip: 13.77.154.182, mailfrom: mikuback@linux.microsoft.com) Received: from localhost.localdomain (unknown [47.201.8.94]) by linux.microsoft.com (Postfix) with ESMTPSA id 4CF6220B87DD; Wed, 14 Dec 2022 14:53:11 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 4CF6220B87DD DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1671058391; bh=P6HqIQEKnXW54rHekGdK4pego8+MyKyGH9JqDvhoST4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=GOzb6zI8RYSZ/NoWbYRQq4l2vGxIC/rHjKmupjarl09m2qHu4tuwQSpAtAQfUD4Wt TXPj29/+rOd8SrSZhzis7StLpF2BDUEbG3lFtLluNYP8EAR2w3txp+4cqNV2i2gpuT KiWPJeAqWZ1PWa4ntqIcv4VQ/bKwZBfYM+1tYkwc= From: "Michael Kubacki" To: devel@edk2.groups.io Cc: Michael Kubacki , Nate DeSimone , Ankit Sinha Subject: [PATCH v3 01/14] PrmPkg: Fix new typos reported Date: Wed, 14 Dec 2022 17:52:39 -0500 Message-Id: <20221214225252.1660-2-mikuback@linux.microsoft.com> X-Mailer: git-send-email 2.28.0.windows.1 In-Reply-To: <20221214225252.1660-1-mikuback@linux.microsoft.com> References: <20221214225252.1660-1-mikuback@linux.microsoft.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Michael Kubacki The SpellCheck plugin began reporting new typos that were previously missed. This change fixes those typos. Cc: Michael Kubacki Cc: Nate DeSimone Cc: Ankit Sinha Signed-off-by: Michael Kubacki --- PrmPkg/Application/PrmInfo/PrmInfo.c = | 2 +- PrmPkg/Library/DxePrmModuleDiscoveryLib/DxePrmModuleDiscoveryLib.c = | 2 +- PrmPkg/PrmLoaderDxe/PrmLoaderDxe.c = | 2 +- UnitTestFrameworkPkg/Library/UnitTestUefiBootServicesTableLib/UnitTestUe= fiBootServicesTableLibImage.c | 2 +- UnitTestFrameworkPkg/Library/UnitTestUefiBootServicesTableLib/UnitTestUe= fiBootServicesTableLibProtocol.c | 2 +- PrmPkg/Include/Library/PrmModuleDiscoveryLib.h = | 2 +- PrmPkg/PrmLoaderDxe/PrmAcpiTable.h = | 4 ++-- PrmPkg/PrmPkg.ci.yaml = | 9 +++++++++ UnitTestFrameworkPkg/Library/UnitTestUefiBootServicesTableLib/UnitTestUe= fiBootServicesTableLib.h | 4 ++-- 9 files changed, 19 insertions(+), 10 deletions(-) diff --git a/PrmPkg/Application/PrmInfo/PrmInfo.c b/PrmPkg/Application/Pr= mInfo/PrmInfo.c index 0cde2fad3b4b..178d4810f498 100644 --- a/PrmPkg/Application/PrmInfo/PrmInfo.c +++ b/PrmPkg/Application/PrmInfo/PrmInfo.c @@ -148,7 +148,7 @@ PrintMmioRuntimeRangeInfo ( Gathers the PRM handler (and by extension module) information discover= ed on this system. =20 This function must be called to build up the discovered context for ot= her functions in the application. The - function will optionally print results as determed by the value of the= PrintInformation parameter. + function will optionally print results as determined by the value of t= he PrintInformation parameter. =20 @param[in] PrintInformation Indicates whether to print infor= mation as discovered in the function. =20 diff --git a/PrmPkg/Library/DxePrmModuleDiscoveryLib/DxePrmModuleDiscover= yLib.c b/PrmPkg/Library/DxePrmModuleDiscoveryLib/DxePrmModuleDiscoveryLib= .c index e6bea47bc583..34373effd4cd 100644 --- a/PrmPkg/Library/DxePrmModuleDiscoveryLib/DxePrmModuleDiscoveryLib.c +++ b/PrmPkg/Library/DxePrmModuleDiscoveryLib/DxePrmModuleDiscoveryLib.c @@ -149,7 +149,7 @@ IsAddressInMmram ( /** Discovers all PRM Modules loaded during boot. =20 - Each PRM Module discovered is placed into a linked list so the list ca= n br processsed in the future. + Each PRM Module discovered is placed into a linked list so the list ca= n br processed in the future. =20 @param[out] ModuleCount An optional pointer parameter = that, if provided, is set to the number of PRM modules discovered. diff --git a/PrmPkg/PrmLoaderDxe/PrmLoaderDxe.c b/PrmPkg/PrmLoaderDxe/Prm= LoaderDxe.c index 5a223d783d80..7b0042f133ef 100644 --- a/PrmPkg/PrmLoaderDxe/PrmLoaderDxe.c +++ b/PrmPkg/PrmLoaderDxe/PrmLoaderDxe.c @@ -295,7 +295,7 @@ PublishPrmAcpiTable ( time of this function invocation. =20 The main responsibilities of the PRM Loader are executed from this fun= ction which include 3 phases: - 1.) Disover PRM Modules - Find all PRM modules loaded during DXE dis= patch and insert a PRM Module + 1.) Discover PRM Modules - Find all PRM modules loaded during DXE di= spatch and insert a PRM Module Context entry into a linked list to be handed off to phase 2. 2.) Process PRM Modules - Build a GUID to PRM handler mapping for ea= ch module that is described in the PRM ACPI table so the OS can resolve a PRM Handler GUID to the c= orresponding PRM Handler physical address. diff --git a/UnitTestFrameworkPkg/Library/UnitTestUefiBootServicesTableLi= b/UnitTestUefiBootServicesTableLibImage.c b/UnitTestFrameworkPkg/Library/= UnitTestUefiBootServicesTableLib/UnitTestUefiBootServicesTableLibImage.c index 144cc33e25c0..7c1c4b854b65 100644 --- a/UnitTestFrameworkPkg/Library/UnitTestUefiBootServicesTableLib/UnitT= estUefiBootServicesTableLibImage.c +++ b/UnitTestFrameworkPkg/Library/UnitTestUefiBootServicesTableLib/UnitT= estUefiBootServicesTableLibImage.c @@ -130,7 +130,7 @@ UnitTestExit ( @retval EFI_SUCCESS The image has been unloaded. @retval EFI_UNSUPPORTED The image has been started, and does n= ot support unload. - @retval EFI_INVALID_PARAMPETER ImageHandle is not a valid image handl= e. + @retval EFI_INVALID_PARAMETER ImageHandle is not a valid image handl= e. =20 **/ EFI_STATUS diff --git a/UnitTestFrameworkPkg/Library/UnitTestUefiBootServicesTableLi= b/UnitTestUefiBootServicesTableLibProtocol.c b/UnitTestFrameworkPkg/Libra= ry/UnitTestUefiBootServicesTableLib/UnitTestUefiBootServicesTableLibProto= col.c index 437082d516ea..3d8110c8f8cd 100644 --- a/UnitTestFrameworkPkg/Library/UnitTestUefiBootServicesTableLib/UnitT= estUefiBootServicesTableLibProtocol.c +++ b/UnitTestFrameworkPkg/Library/UnitTestUefiBootServicesTableLib/UnitT= estUefiBootServicesTableLibProtocol.c @@ -723,7 +723,7 @@ UnitTestReinstallProtocolInterface ( } =20 /** - Uninstalls all instances of a protocol:interfacer from a handle. + Uninstalls all instances of a protocol from a handle. If the last protocol interface is remove from the handle, the handle is freed. =20 diff --git a/PrmPkg/Include/Library/PrmModuleDiscoveryLib.h b/PrmPkg/Incl= ude/Library/PrmModuleDiscoveryLib.h index 341b9b26a0f8..9df8d4d02370 100644 --- a/PrmPkg/Include/Library/PrmModuleDiscoveryLib.h +++ b/PrmPkg/Include/Library/PrmModuleDiscoveryLib.h @@ -34,7 +34,7 @@ GetNextPrmModuleEntry ( /** Discovers all PRM Modules loaded during boot. =20 - Each PRM Module discovered is placed into a linked list so the list ca= n br processsed in the future. + Each PRM Module discovered is placed into a linked list so the list ca= n br processed in the future. =20 @param[out] ModuleCount An optional pointer parameter = that, if provided, is set to the number of PRM modules discovered. diff --git a/PrmPkg/PrmLoaderDxe/PrmAcpiTable.h b/PrmPkg/PrmLoaderDxe/Prm= AcpiTable.h index e2034d4738bd..fdb708c2a112 100644 --- a/PrmPkg/PrmLoaderDxe/PrmAcpiTable.h +++ b/PrmPkg/PrmLoaderDxe/PrmAcpiTable.h @@ -72,7 +72,7 @@ typedef struct { // // Todo: Revisit whether to use; currently both macros are not used // -#define PRM_MODULE_INFORMATION_STRUCTURE(ModuleGuid, ModuleRevision, Han= dlerCount, PrmHanderInfoStructureArray) { \ +#define PRM_MODULE_INFORMATION_STRUCTURE(ModuleGuid, ModuleRevision, Han= dlerCount, PrmHandlerInfoStructureArray) { \ { = \ PRM_MODULE_INFORMATION_STRUCT_REVISION, = /* UINT16 S= tructureRevision; */ \ (OFFSET_OF (PRM_MODULE_INFORMATION_STRUCT, HandlerInfoStructure) += (HandlerCount * sizeof (PRM_HANDLER_INFORMATION_STRUCT))) /* UINT16 S= tructureLength; */ \ @@ -80,7 +80,7 @@ typedef struct { ModuleRevision, = /* UINT16 M= oduleRevision */ \ HandlerCount, = /* UINT16 H= andlerCount */ \ OFFSET_OF (PRM_MODULE_INFORMATION_STRUCT, HandlerInfoOffset), = /* UINT32 H= andlerInfoOffset */ \ - PrmHanderInfoStructureArray = /* PRM_HANDLER= _INFORMATION_STRUCT HandlerInfoStructure */ \ + PrmHandlerInfoStructureArray = /* PRM_HANDLER= _INFORMATION_STRUCT HandlerInfoStructure */ \ } \ } =20 diff --git a/PrmPkg/PrmPkg.ci.yaml b/PrmPkg/PrmPkg.ci.yaml index 2d4d12815d6b..521d95a2620f 100644 --- a/PrmPkg/PrmPkg.ci.yaml +++ b/PrmPkg/PrmPkg.ci.yaml @@ -94,10 +94,19 @@ # in matching files "ExtendWords": [ # words to extend to the dictionary = for this package "buffe", # note: appears in buffer ascii dump= in documentation + "dbgmsgid", + "devicepath", "iptor", # note: appears in buffer ascii dump= in documentation "keepoptionalheader", "odule", # note: appears in buffer ascii dump= in documentation "oemid", + "packagelist", + "pecoff", + "prmconfig", + "prmcontextbufferlib", + "prminfo", + "prmloader", + "prmmodulediscoverylib", "prmopreg", "prmpecofflib", "prmpkg", diff --git a/UnitTestFrameworkPkg/Library/UnitTestUefiBootServicesTableLi= b/UnitTestUefiBootServicesTableLib.h b/UnitTestFrameworkPkg/Library/UnitT= estUefiBootServicesTableLib/UnitTestUefiBootServicesTableLib.h index 82853bb61a1c..20958589b254 100644 --- a/UnitTestFrameworkPkg/Library/UnitTestUefiBootServicesTableLib/UnitT= estUefiBootServicesTableLib.h +++ b/UnitTestFrameworkPkg/Library/UnitTestUefiBootServicesTableLib/UnitT= estUefiBootServicesTableLib.h @@ -354,7 +354,7 @@ UnitTestReinstallProtocolInterface ( ); =20 /** - Uninstalls all instances of a protocol:interfacer from a handle. + Uninstalls all instances of a protocol from a handle. If the last protocol interface is remove from the handle, the handle is freed. =20 @@ -600,7 +600,7 @@ UnitTestExit ( @retval EFI_SUCCESS The image has been unloaded. @retval EFI_UNSUPPORTED The image has been started, and does n= ot support unload. - @retval EFI_INVALID_PARAMPETER ImageHandle is not a valid image handl= e. + @retval EFI_INVALID_PARAMETER ImageHandle is not a valid image handl= e. =20 **/ EFI_STATUS --=20 2.28.0.windows.1