FatPkg/EnhancedFatDxe: Fix various typos

Fix various typos in FatPkg/EnhancedFatDxe comments.

Cc: Ray Ni <ray.ni@intel.com>
Signed-off-by: Antoine Coeur <coeur@gmx.fr>
Reviewed-by: Philippe Mathieu-Daude <philmd@redhat.com>
Acked-by: Liming Gao <liming.gao@intel.com>
Signed-off-by: Philippe Mathieu-Daude <philmd@redhat.com>
Message-Id: <20200207010831.9046-8-philmd@redhat.com>
This commit is contained in:
Antoine Coeur 2020-02-07 02:07:20 +01:00 committed by mergify[bot]
parent 3d6b7fd303
commit db62b65c63
7 changed files with 12 additions and 12 deletions

View File

@ -56,7 +56,7 @@ FatDelete (
goto Done; goto Done;
} }
// //
// If the file has a permanant error, skip the delete // If the file has a permanent error, skip the delete
// //
Status = OFile->Error; Status = OFile->Error;
if (!EFI_ERROR (Status)) { if (!EFI_ERROR (Status)) {

View File

@ -13,7 +13,7 @@ SPDX-License-Identifier: BSD-2-Clause-Patent
Get a directory entry from disk for the Ofile. Get a directory entry from disk for the Ofile.
@param Parent - The parent of the OFile which need to update. @param Parent - The parent of the OFile which need to update.
@param IoMode - Indicate whether to read directory entry or write directroy entry. @param IoMode - Indicate whether to read directory entry or write directory entry.
@param EntryPos - The position of the directory entry to be accessed. @param EntryPos - The position of the directory entry to be accessed.
@param Entry - The directory entry read or written. @param Entry - The directory entry read or written.

View File

@ -417,7 +417,7 @@ FatDriverBindingStart (
Status = FatAllocateVolume (ControllerHandle, DiskIo, DiskIo2, BlockIo); Status = FatAllocateVolume (ControllerHandle, DiskIo, DiskIo2, BlockIo);
// //
// When the media changes on a device it will Reinstall the BlockIo interaface. // When the media changes on a device it will Reinstall the BlockIo interface.
// This will cause a call to our Stop(), and a subsequent reentrant call to our // This will cause a call to our Stop(), and a subsequent reentrant call to our
// Start() successfully. We should leave the device open when this happen. // Start() successfully. We should leave the device open when this happen.
// //

View File

@ -236,7 +236,7 @@ struct _FAT_OFILE {
UINTN Signature; UINTN Signature;
FAT_VOLUME *Volume; FAT_VOLUME *Volume;
// //
// A permanant error code to return to all accesses to // A permanent error code to return to all accesses to
// this opened file // this opened file
// //
EFI_STATUS Error; EFI_STATUS Error;
@ -246,7 +246,7 @@ struct _FAT_OFILE {
LIST_ENTRY Opens; LIST_ENTRY Opens;
// //
// The dynamic infomation // The dynamic information
// //
UINTN FileSize; UINTN FileSize;
UINTN FileCluster; UINTN FileCluster;
@ -1863,7 +1863,7 @@ FatCreate8Dot3Name (
@param FatName - The Char8 string needs to be converted. @param FatName - The Char8 string needs to be converted.
@param Len - The length of the fat name. @param Len - The length of the fat name.
@param LowerCase - Indicate whether to convert the string to lower case. @param LowerCase - Indicate whether to convert the string to lower case.
@param Str - The result of the convertion. @param Str - The result of the conversion.
**/ **/
VOID VOID

View File

@ -128,7 +128,7 @@ FatTrimAsciiTrailingBlanks (
@param FatName - The Char8 string needs to be converted. @param FatName - The Char8 string needs to be converted.
@param Len - The length of the fat name. @param Len - The length of the fat name.
@param LowerCase - Indicate whether to convert the string to lower case. @param LowerCase - Indicate whether to convert the string to lower case.
@param Str - The result of the convertion. @param Str - The result of the conversion.
**/ **/
VOID VOID

View File

@ -223,7 +223,7 @@ FatSetFatEntry (
/** /**
Free the cluster clain. Free the cluster chain.
@param Volume - FAT file system volume. @param Volume - FAT file system volume.
@param Cluster - The first cluster of cluster chain. @param Cluster - The first cluster of cluster chain.
@ -575,8 +575,8 @@ FatOFilePosition (
ASSERT_VOLUME_LOCKED (Volume); ASSERT_VOLUME_LOCKED (Volume);
// //
// If this is the fixed root dir, then compute it's position // If this is the fixed root dir, then compute its position
// from it's fixed info in the fat bpb // from its fixed info in the fat bpb
// //
if (OFile->IsFixedRootDir) { if (OFile->IsFixedRootDir) {
OFile->PosDisk = Volume->RootPos + Position; OFile->PosDisk = Volume->RootPos + Position;

View File

@ -226,7 +226,7 @@ FatOFileFlush (
// //
do { do {
// //
// If the file has a permanant error, then don't write any // If the file has a permanent error, then don't write any
// of its data to the device (may be from different media) // of its data to the device (may be from different media)
// //
if (EFI_ERROR (OFile->Error)) { if (EFI_ERROR (OFile->Error)) {
@ -319,7 +319,7 @@ FatCheckOFileRef (
Check the references of all open files on the volume. Check the references of all open files on the volume.
Any open file (that is checked) that is no longer Any open file (that is checked) that is no longer
referenced, is freed - and it's parent open file referenced, is freed - and its parent open file
is then referenced checked. is then referenced checked.
@param Volume - The volume to check the pending open file list. @param Volume - The volume to check the pending open file list.