Revision: 17045 http://sourceforge.net/p/edk2/code/17045 Author: shenshushi Date: 2015-03-13 08:13:16 +0000 (Fri, 13 Mar 2015) Log Message: ----------- MdeModulePkg: Fix typo.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Shumin Qiu <shumin....@intel.com> Reviewed-by: Feng Tian <feng.t...@intel.com> Modified Paths: -------------- trunk/edk2/MdeModulePkg/Bus/Pci/XhciDxe/UsbHcMem.c trunk/edk2/MdeModulePkg/Bus/Pci/XhciPei/UsbHcMem.c trunk/edk2/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c trunk/edk2/MdeModulePkg/Include/Guid/SystemNvDataGuid.h trunk/edk2/MdeModulePkg/Library/DxeCoreMemoryAllocationLib/MemoryAllocationLib.c trunk/edk2/MdeModulePkg/Library/PiSmmCoreMemoryAllocationLib/MemoryAllocationLib.c trunk/edk2/MdeModulePkg/Universal/Network/IScsiDxe/IScsiCHAP.c Modified: trunk/edk2/MdeModulePkg/Bus/Pci/XhciDxe/UsbHcMem.c =================================================================== --- trunk/edk2/MdeModulePkg/Bus/Pci/XhciDxe/UsbHcMem.c 2015-03-13 08:05:02 UTC (rev 17044) +++ trunk/edk2/MdeModulePkg/Bus/Pci/XhciDxe/UsbHcMem.c 2015-03-13 08:13:16 UTC (rev 17045) @@ -2,7 +2,7 @@ Routine procedures for memory allocate/free. -Copyright (c) 2013, Intel Corporation. All rights reserved.<BR> +Copyright (c) 2013 - 2015, Intel Corporation. All rights reserved.<BR> This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at @@ -649,7 +649,7 @@ } if (Alignment > EFI_PAGE_SIZE) { // - // Caculate the total number of pages since alignment is larger than page size. + // Calculate the total number of pages since alignment is larger than page size. // AlignmentMask = Alignment - 1; RealPages = Pages + EFI_SIZE_TO_PAGES (Alignment); Modified: trunk/edk2/MdeModulePkg/Bus/Pci/XhciPei/UsbHcMem.c =================================================================== --- trunk/edk2/MdeModulePkg/Bus/Pci/XhciPei/UsbHcMem.c 2015-03-13 08:05:02 UTC (rev 17044) +++ trunk/edk2/MdeModulePkg/Bus/Pci/XhciPei/UsbHcMem.c 2015-03-13 08:13:16 UTC (rev 17045) @@ -2,7 +2,7 @@ PEIM to produce gPeiUsb2HostControllerPpiGuid based on gPeiUsbControllerPpiGuid which is used to enable recovery function from USB Drivers. -Copyright (c) 2014, Intel Corporation. All rights reserved.<BR> +Copyright (c) 2014 - 2015, Intel Corporation. All rights reserved.<BR> This program and the accompanying materials are licensed and made available under the terms and conditions @@ -602,7 +602,7 @@ if (Alignment > EFI_PAGE_SIZE) { // - // Caculate the total number of pages since alignment is larger than page size. + // Calculate the total number of pages since alignment is larger than page size. // AlignmentMask = Alignment - 1; RealPages = Pages + EFI_SIZE_TO_PAGES (Alignment); Modified: trunk/edk2/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c =================================================================== --- trunk/edk2/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c 2015-03-13 08:05:02 UTC (rev 17044) +++ trunk/edk2/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c 2015-03-13 08:13:16 UTC (rev 17045) @@ -1,7 +1,7 @@ /** @file EFI PEI Core dispatch services -Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR> +Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR> This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at @@ -863,7 +863,7 @@ if (Private->SwitchStackSignal) { // - // Before switch stack from temporary memory to permenent memory, caculate the heap and stack + // Before switch stack from temporary memory to permenent memory, calculate the heap and stack // usage in temporary memory for debuging. // DEBUG_CODE_BEGIN (); @@ -913,7 +913,7 @@ ASSERT (NewStackSize >= SecCoreData->StackSize); // - // Caculate stack offset and heap offset between temporary memory and new permement + // Calculate stack offset and heap offset between temporary memory and new permement // memory seperately. // TopOfOldStack = (UINTN)SecCoreData->StackBase + SecCoreData->StackSize; @@ -969,7 +969,7 @@ DEBUG ((EFI_D_INFO, "Heap Offset = 0x%lX Stack Offset = 0x%lX\n", (UINT64) Private->HeapOffset, (UINT64) Private->StackOffset)); // - // Caculate new HandOffTable and PrivateData address in permanent memory's stack + // Calculate new HandOffTable and PrivateData address in permanent memory's stack // if (StackOffsetPositive) { SecCoreData = (CONST EFI_SEC_PEI_HAND_OFF *)((UINTN)(VOID *)SecCoreData + StackOffset); Modified: trunk/edk2/MdeModulePkg/Include/Guid/SystemNvDataGuid.h =================================================================== --- trunk/edk2/MdeModulePkg/Include/Guid/SystemNvDataGuid.h 2015-03-13 08:05:02 UTC (rev 17044) +++ trunk/edk2/MdeModulePkg/Include/Guid/SystemNvDataGuid.h 2015-03-13 08:13:16 UTC (rev 17045) @@ -4,7 +4,7 @@ this FV image contains NV data, such as NV variable data. This file also defines WorkingBlockSignature GUID for FTW working block signature. -Copyright (c) 2006 - 2013, Intel Corporation. All rights reserved.<BR> +Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR> This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License that accompanies this distribution. The full text of the license may be found at @@ -42,7 +42,7 @@ /// EFI_GUID Signature; /// - /// 32bit CRC caculated for this header. + /// 32bit CRC calculated for this header. /// UINT32 Crc; /// Modified: trunk/edk2/MdeModulePkg/Library/DxeCoreMemoryAllocationLib/MemoryAllocationLib.c =================================================================== --- trunk/edk2/MdeModulePkg/Library/DxeCoreMemoryAllocationLib/MemoryAllocationLib.c 2015-03-13 08:05:02 UTC (rev 17044) +++ trunk/edk2/MdeModulePkg/Library/DxeCoreMemoryAllocationLib/MemoryAllocationLib.c 2015-03-13 08:13:16 UTC (rev 17045) @@ -2,7 +2,7 @@ Support routines for memory allocation routines based on boot services for Dxe phase drivers. - Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR> + Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR> This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at @@ -194,7 +194,7 @@ } if (Alignment > EFI_PAGE_SIZE) { // - // Caculate the total number of pages since alignment is larger than page size. + // Calculate the total number of pages since alignment is larger than page size. // AlignmentMask = Alignment - 1; RealPages = Pages + EFI_SIZE_TO_PAGES (Alignment); Modified: trunk/edk2/MdeModulePkg/Library/PiSmmCoreMemoryAllocationLib/MemoryAllocationLib.c =================================================================== --- trunk/edk2/MdeModulePkg/Library/PiSmmCoreMemoryAllocationLib/MemoryAllocationLib.c 2015-03-13 08:05:02 UTC (rev 17044) +++ trunk/edk2/MdeModulePkg/Library/PiSmmCoreMemoryAllocationLib/MemoryAllocationLib.c 2015-03-13 08:13:16 UTC (rev 17045) @@ -285,7 +285,7 @@ } if (Alignment > EFI_PAGE_SIZE) { // - // Caculate the total number of pages since alignment is larger than page size. + // Calculate the total number of pages since alignment is larger than page size. // AlignmentMask = Alignment - 1; RealPages = Pages + EFI_SIZE_TO_PAGES (Alignment); Modified: trunk/edk2/MdeModulePkg/Universal/Network/IScsiDxe/IScsiCHAP.c =================================================================== --- trunk/edk2/MdeModulePkg/Universal/Network/IScsiDxe/IScsiCHAP.c 2015-03-13 08:05:02 UTC (rev 17044) +++ trunk/edk2/MdeModulePkg/Universal/Network/IScsiDxe/IScsiCHAP.c 2015-03-13 08:13:16 UTC (rev 17045) @@ -1,7 +1,7 @@ /** @file This file is for Challenge-Handshake Authentication Protocol (CHAP) Configuration. -Copyright (c) 2004 - 2011, Intel Corporation. All rights reserved.<BR> +Copyright (c) 2004 - 2015, Intel Corporation. All rights reserved.<BR> This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at @@ -16,7 +16,7 @@ #include "Md5.h" /** - Initator caculates its own expected hash value. + Initator calculates its own expected hash value. @param[in] ChapIdentifier iSCSI CHAP identifier sent by authenticator. @param[in] ChapSecret iSCSI CHAP secret of the authenticator. @@ -25,7 +25,7 @@ @param[in] ChallengeLength The length of iSCSI CHAP challenge message. @param[out] ChapResponse The calculation of the expected hash value. - @retval EFI_SUCCESS The expected hash value was caculatedly successfully. + @retval EFI_SUCCESS The expected hash value was calculatedly successfully. @retval EFI_PROTOCOL_ERROR The length of the secret should be at least the length of the hash value for the hashing algorithm chosen. @retval Others Other errors as indicated. ------------------------------------------------------------------------------ Dive into the World of Parallel Programming The Go Parallel Website, sponsored by Intel and developed in partnership with Slashdot Media, is your hub for all things parallel software development, from weekly thought leadership blogs to news, videos, case studies, tutorials and more. Take a look and join the conversation now. http://goparallel.sourceforge.net/ _______________________________________________ edk2-commits mailing list edk2-commits@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/edk2-commits