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.web12.9319.1652803278061297538 for ; Tue, 17 May 2022 09:01:18 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="body hash did not verify" header.i=@linux.microsoft.com header.s=default header.b=g5ylytWP; spf=pass (domain: linux.microsoft.com, ip: 13.77.154.182, mailfrom: mikuback@linux.microsoft.com) Received: from localhost.localdomain (unknown [47.195.228.134]) by linux.microsoft.com (Postfix) with ESMTPSA id 8686B20F7222; Tue, 17 May 2022 09:01:17 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 8686B20F7222 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1652803277; bh=y0uVD8vL3kLqHB38bsw9Z3JYw8oCwxM1GqQ3KhGDWOs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=g5ylytWP1+7roUJVvOOS193k4uiES//LMGYIDgRPUMoHOsjxYNWgRv3ZEyUQq+EmH oMbVv6p6/xIi5Mb8IglCva0HYUO/LHOM95VjYgHZrgRCQM3PgIbcU8u9rBvtgA3s+Z jm+iLzCROLiEYiWLC6pJ4NKJkQ88wYyyyZ6+97Lw= From: "Michael Kubacki" To: devel@edk2.groups.io Cc: Ray Ni Subject: [PATCH v1 5/8] FatPkg: Fix new typos reported Date: Tue, 17 May 2022 12:00:40 -0400 Message-Id: <20220517160043.1210-6-mikuback@linux.microsoft.com> X-Mailer: git-send-email 2.28.0.windows.1 In-Reply-To: <20220517160043.1210-1-mikuback@linux.microsoft.com> References: <20220517160043.1210-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: Ray Ni Signed-off-by: Michael Kubacki --- FatPkg/EnhancedFatDxe/FileSpace.c | 2 +- FatPkg/EnhancedFatDxe/ReadWrite.c | 2 +- FatPkg/EnhancedFatDxe/Fat.h | 2 +- FatPkg/FatPkg.ci.yaml | 22 +++++++++++++++----- 4 files changed, 20 insertions(+), 8 deletions(-) diff --git a/FatPkg/EnhancedFatDxe/FileSpace.c b/FatPkg/EnhancedFatDxe/Fi= leSpace.c index 909d4980d21a..1220e66598ea 100644 --- a/FatPkg/EnhancedFatDxe/FileSpace.c +++ b/FatPkg/EnhancedFatDxe/FileSpace.c @@ -347,7 +347,7 @@ FatSizeToClusters ( =20 @param OFile - The open file. =20 - @retval EFI_SUCCESS - Shrinked successfully. + @retval EFI_SUCCESS - Shrunk successfully. @retval EFI_VOLUME_CORRUPTED - There are errors in the file's cluster= s. =20 **/ diff --git a/FatPkg/EnhancedFatDxe/ReadWrite.c b/FatPkg/EnhancedFatDxe/Re= adWrite.c index 8f525044d1f1..6593e3aff79c 100644 --- a/FatPkg/EnhancedFatDxe/ReadWrite.c +++ b/FatPkg/EnhancedFatDxe/ReadWrite.c @@ -580,7 +580,7 @@ FatWriteZeroPool ( if (AppendedSize > FAT_MAX_ALLOCATE_SIZE) { // // If the appended size is larger, maybe we can not allocate the who= le - // memory once. So if the growed size is larger than 10M, we just + // memory once. So if the grown size is larger than 10M, we just // allocate 10M memory (one healthy system should have 10M available // memory), and then write the zerobuffer to the file several times. // diff --git a/FatPkg/EnhancedFatDxe/Fat.h b/FatPkg/EnhancedFatDxe/Fat.h index 356cdbdb51af..e4aa8eac62c4 100644 --- a/FatPkg/EnhancedFatDxe/Fat.h +++ b/FatPkg/EnhancedFatDxe/Fat.h @@ -867,7 +867,7 @@ FatCleanupVolume ( =20 @param OFile - The open file. =20 - @retval EFI_SUCCESS - Shrinked successfully. + @retval EFI_SUCCESS - Shrunk successfully. @retval EFI_VOLUME_CORRUPTED - There are errors in the file's cluster= s. =20 **/ diff --git a/FatPkg/FatPkg.ci.yaml b/FatPkg/FatPkg.ci.yaml index fe95f481b50c..247028c22921 100644 --- a/FatPkg/FatPkg.ci.yaml +++ b/FatPkg/FatPkg.ci.yaml @@ -51,15 +51,27 @@ }, "SpellCheck": { "ExtendWords": [ + "bootable", + "caseflag", + "CDVOL", + "checklink", + "childlink", + "clustersize", + "controll", + "datacache", + "dircachelink", + "DMDEPKG", "ELTORITO", + "fatcache", + "fatfilesystem", + "fatname", + "FDISKed", + "FFFFFFFFL", "FHAND", "IFILE", - "OFILE", - "FDISKed", "Lfnbuffer", - "FFFFFFFFL", - "CDVOL", - "DMDEPKG" + "OFILE", + "zerobuffer" ] } } --=20 2.28.0.windows.1