diff options
author | gikidy <gikidy@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-12-17 09:35:12 +0000 |
---|---|---|
committer | gikidy <gikidy@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-12-17 09:35:12 +0000 |
commit | dfe687cad590b3544e34bf25be932bdee1b5c796 (patch) | |
tree | dc4f7bc89a908ece59dc082c4a6f8323571fbcbb | |
parent | 11baadb671293259c4a235db53fdd3371b0eb817 (diff) | |
download | edk2-platforms-dfe687cad590b3544e34bf25be932bdee1b5c796.tar.xz |
Fix some typo.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7067 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDisk.c | 2 | ||||
-rw-r--r-- | MdeModulePkg/Library/UefiHiiLib/HiiLib.c | 6 | ||||
-rw-r--r-- | MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatform.c | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDisk.c b/MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDisk.c index d2a751a8ed..95d5c8c0a9 100644 --- a/MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDisk.c +++ b/MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDisk.c @@ -229,7 +229,7 @@ ScsiDiskDriverBindingStart ( );
//
- // Retrive device information
+ // Retrieve device information
//
MaxRetry = 2;
for (Index = 0; Index < MaxRetry; Index++) {
diff --git a/MdeModulePkg/Library/UefiHiiLib/HiiLib.c b/MdeModulePkg/Library/UefiHiiLib/HiiLib.c index 975a064a39..f5544d9fce 100644 --- a/MdeModulePkg/Library/UefiHiiLib/HiiLib.c +++ b/MdeModulePkg/Library/UefiHiiLib/HiiLib.c @@ -97,7 +97,7 @@ InternalHiiLibPreparePackages ( MarkerBackup = Marker;
//
- // Count the lenth of the final package list.
+ // Count the length of the final package list.
//
for (Index = 0; Index < NumberOfPackages; Index++) {
CopyMem (&PackageLength, VA_ARG (Marker, VOID *), sizeof (UINT32));
@@ -108,7 +108,7 @@ InternalHiiLibPreparePackages ( }
//
- // Include the lenght of EFI_HII_PACKAGE_END
+ // Include the length of EFI_HII_PACKAGE_END
//
PackageListLength += sizeof (EFI_HII_PACKAGE_HEADER);
PackageListHeader = AllocateZeroPool (PackageListLength);
@@ -186,7 +186,7 @@ HiiLibPreparePackageList ( GuidId, and the variable length argument list of package pointers.
Then, EFI_HII_PACKAGE_LIST will be register to the default System HII Database. The
- Handle to the newly registered Package List is returned throught HiiHandle.
+ Handle to the newly registered Package List is returned through HiiHandle.
If HiiHandle is NULL, then ASSERT.
diff --git a/MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatform.c b/MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatform.c index f2f7d4caec..3ba28c8ae7 100644 --- a/MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatform.c +++ b/MdeModulePkg/Universal/Console/ConPlatformDxe/ConPlatform.c @@ -1,5 +1,5 @@ /** @file
- Console Platfrom DXE Driver, install Console Device Guids and update Console
+ Console Platform DXE Driver, install Console Device Guids and update Console
Environment Variables.
Copyright (c) 2006 - 2008, Intel Corporation. <BR>
|