ArmPkg: Correct small typos
The 'cspell' CI test detected some small typos in ArmPkg. Correct them. Cc: Bret Barkelew <bret.barkelew@microsoft.com> Cc: Sean Brogan <sean.brogan@microsoft.com> Cc: Leif Lindholm <leif@nuviainc.com> Cc: Ard Biesheuvel <ardb+tianocore@kernel.org> Cc: Sami Mujawar <sami.mujawar@arm.com> Signed-off-by: Pierre Gondois <Pierre.Gondois@arm.com> Reviewed-by: Sami Mujawar <sami.mujawar@arm.com>
This commit is contained in:
		
				
					committed by
					
						
						mergify[bot]
					
				
			
			
				
	
			
			
			
						parent
						
							c2bd8a1a82
						
					
				
				
					commit
					b8de64bede
				
			@@ -121,7 +121,7 @@ GicV2GetInterruptSourceState (
 | 
				
			|||||||
  @param This     Instance pointer for this protocol
 | 
					  @param This     Instance pointer for this protocol
 | 
				
			||||||
  @param Source   Hardware source of the interrupt
 | 
					  @param Source   Hardware source of the interrupt
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  @retval EFI_SUCCESS       Source interrupt EOI'ed.
 | 
					  @retval EFI_SUCCESS       Source interrupt ended successfully.
 | 
				
			||||||
  @retval EFI_UNSUPPORTED   Source interrupt is not supported
 | 
					  @retval EFI_UNSUPPORTED   Source interrupt is not supported
 | 
				
			||||||
 | 
					
 | 
				
			||||||
**/
 | 
					**/
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -115,7 +115,7 @@ GicV3GetInterruptSourceState (
 | 
				
			|||||||
  @param This     Instance pointer for this protocol
 | 
					  @param This     Instance pointer for this protocol
 | 
				
			||||||
  @param Source   Hardware source of the interrupt
 | 
					  @param Source   Hardware source of the interrupt
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  @retval EFI_SUCCESS       Source interrupt EOI'ed.
 | 
					  @retval EFI_SUCCESS       Source interrupt ended successfully.
 | 
				
			||||||
  @retval EFI_DEVICE_ERROR  Hardware could not be programmed.
 | 
					  @retval EFI_DEVICE_ERROR  Hardware could not be programmed.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
**/
 | 
					**/
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -345,7 +345,7 @@ EfiAttributeToArmAttribute (
 | 
				
			|||||||
      break;
 | 
					      break;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    case EFI_MEMORY_WC:
 | 
					    case EFI_MEMORY_WC:
 | 
				
			||||||
      // Map to normal non-cachable
 | 
					      // Map to normal non-cacheable
 | 
				
			||||||
      ArmAttributes = TT_DESCRIPTOR_SECTION_CACHE_POLICY_NON_CACHEABLE; // TEX [2:0]= 001 = 0x2, B=0, C=0
 | 
					      ArmAttributes = TT_DESCRIPTOR_SECTION_CACHE_POLICY_NON_CACHEABLE; // TEX [2:0]= 001 = 0x2, B=0, C=0
 | 
				
			||||||
      break;
 | 
					      break;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -51,7 +51,7 @@ EFI_FILE gSemihostFsFile = {
 | 
				
			|||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
//
 | 
					//
 | 
				
			||||||
// Device path for semi-hosting. It contains our autogened Caller ID GUID.
 | 
					// Device path for semi-hosting. It contains our auto-generated Caller ID GUID.
 | 
				
			||||||
//
 | 
					//
 | 
				
			||||||
typedef struct {
 | 
					typedef struct {
 | 
				
			||||||
  VENDOR_DEVICE_PATH        Guid;
 | 
					  VENDOR_DEVICE_PATH        Guid;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -124,7 +124,7 @@ UpdatePageEntries (
 | 
				
			|||||||
  } else if ((Attributes & EFI_MEMORY_WC) != 0) {
 | 
					  } else if ((Attributes & EFI_MEMORY_WC) != 0) {
 | 
				
			||||||
    // modify cacheability attributes
 | 
					    // modify cacheability attributes
 | 
				
			||||||
    EntryMask |= TT_DESCRIPTOR_PAGE_CACHE_POLICY_MASK;
 | 
					    EntryMask |= TT_DESCRIPTOR_PAGE_CACHE_POLICY_MASK;
 | 
				
			||||||
    // map to normal non-cachable
 | 
					    // map to normal non-cacheable
 | 
				
			||||||
    EntryValue |= TT_DESCRIPTOR_PAGE_CACHE_POLICY_NON_CACHEABLE; // TEX [2:0]= 001 = 0x2, B=0, C=0
 | 
					    EntryValue |= TT_DESCRIPTOR_PAGE_CACHE_POLICY_NON_CACHEABLE; // TEX [2:0]= 001 = 0x2, B=0, C=0
 | 
				
			||||||
  } else if ((Attributes & EFI_MEMORY_WT) != 0) {
 | 
					  } else if ((Attributes & EFI_MEMORY_WT) != 0) {
 | 
				
			||||||
    // modify cacheability attributes
 | 
					    // modify cacheability attributes
 | 
				
			||||||
@@ -254,7 +254,7 @@ UpdateSectionEntries (
 | 
				
			|||||||
  } else if ((Attributes & EFI_MEMORY_WC) != 0) {
 | 
					  } else if ((Attributes & EFI_MEMORY_WC) != 0) {
 | 
				
			||||||
    // modify cacheability attributes
 | 
					    // modify cacheability attributes
 | 
				
			||||||
    EntryMask |= TT_DESCRIPTOR_SECTION_CACHE_POLICY_MASK;
 | 
					    EntryMask |= TT_DESCRIPTOR_SECTION_CACHE_POLICY_MASK;
 | 
				
			||||||
    // map to normal non-cachable
 | 
					    // map to normal non-cacheable
 | 
				
			||||||
    EntryValue |= TT_DESCRIPTOR_SECTION_CACHE_POLICY_NON_CACHEABLE; // TEX [2:0]= 001 = 0x2, B=0, C=0
 | 
					    EntryValue |= TT_DESCRIPTOR_SECTION_CACHE_POLICY_NON_CACHEABLE; // TEX [2:0]= 001 = 0x2, B=0, C=0
 | 
				
			||||||
  } else if ((Attributes & EFI_MEMORY_WT) != 0) {
 | 
					  } else if ((Attributes & EFI_MEMORY_WT) != 0) {
 | 
				
			||||||
    // modify cacheability attributes
 | 
					    // modify cacheability attributes
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -37,11 +37,11 @@ SerialPortInitialize (
 | 
				
			|||||||
/**
 | 
					/**
 | 
				
			||||||
  Write data to serial device.
 | 
					  Write data to serial device.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  @param  Buffer           Point of data buffer which need to be writed.
 | 
					  @param  Buffer           Point of data buffer which need to be written.
 | 
				
			||||||
  @param  NumberOfBytes    Number of output bytes which are cached in Buffer.
 | 
					  @param  NumberOfBytes    Number of output bytes which are cached in Buffer.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  @retval 0                Write data failed.
 | 
					  @retval 0                Write data failed.
 | 
				
			||||||
  @retval !0               Actual number of bytes writed to serial device.
 | 
					  @retval !0               Actual number of bytes written to serial device.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
**/
 | 
					**/
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -103,7 +103,7 @@ SerialPortWrite (
 | 
				
			|||||||
/**
 | 
					/**
 | 
				
			||||||
  Read data from serial device and save the datas in buffer.
 | 
					  Read data from serial device and save the datas in buffer.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  @param  Buffer           Point of data buffer which need to be writed.
 | 
					  @param  Buffer           Point of data buffer which need to be written.
 | 
				
			||||||
  @param  NumberOfBytes    Number of output bytes which are cached in Buffer.
 | 
					  @param  NumberOfBytes    Number of output bytes which are cached in Buffer.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  @retval 0                Read data failed.
 | 
					  @retval 0                Read data failed.
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -102,7 +102,7 @@ SendMemoryPermissionRequest (
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  // Check error response from Callee.
 | 
					  // Check error response from Callee.
 | 
				
			||||||
  if ((*RetVal & BIT31) != 0) {
 | 
					  if ((*RetVal & BIT31) != 0) {
 | 
				
			||||||
    // Bit 31 set means there is an error retured
 | 
					    // Bit 31 set means there is an error returned
 | 
				
			||||||
    // See [1], Section 13.5.5.1 MM_SP_MEMORY_ATTRIBUTES_GET_AARCH64 and
 | 
					    // See [1], Section 13.5.5.1 MM_SP_MEMORY_ATTRIBUTES_GET_AARCH64 and
 | 
				
			||||||
    // Section 13.5.5.2 MM_SP_MEMORY_ATTRIBUTES_SET_AARCH64.
 | 
					    // Section 13.5.5.2 MM_SP_MEMORY_ATTRIBUTES_SET_AARCH64.
 | 
				
			||||||
    switch (*RetVal) {
 | 
					    switch (*RetVal) {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -23,9 +23,9 @@
 | 
				
			|||||||
/**
 | 
					/**
 | 
				
			||||||
  Get next language from language code list (with separator ';').
 | 
					  Get next language from language code list (with separator ';').
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  @param  LangCode       Input: point to first language in the list. On
 | 
					  @param  LangCode       Input:  point to first language in the list. On
 | 
				
			||||||
                         Otput: point to next language in the list, or
 | 
					                         Output: point to next language in the list, or
 | 
				
			||||||
                                NULL if no more language in the list.
 | 
					                                 NULL if no more language in the list.
 | 
				
			||||||
  @param  Lang           The first language in the list.
 | 
					  @param  Lang           The first language in the list.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
**/
 | 
					**/
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user