Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ArmPlatformPkg: Fix various typos #144

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ArmPlatformPkg/Drivers/NorFlashDxe/NorFlashDxe.c
Original file line number Diff line number Diff line change
Expand Up @@ -1109,7 +1109,7 @@ NorFlashWriteSingleBlock (
@retval EFI_SUCCESS The data was read correctly from the device.
@retval EFI_DEVICE_ERROR The device reported an error while performing the read.
@retval EFI_NO_MEDIA There is no media in the device.
@retval EFI_MEDIA_CHNAGED The MediaId does not matched the current device.
@retval EFI_MEDIA_CHANGED The MediaId does not match the current device.
@retval EFI_INVALID_PARAMETER The read request contains device addresses that are not
valid for the device.

Expand Down Expand Up @@ -1154,7 +1154,7 @@ NorFlashDiskIoReadDisk (
@retval EFI_WRITE_PROTECTED The device can not be written to.
@retval EFI_DEVICE_ERROR The device reported an error while performing the write.
@retval EFI_NO_MEDIA There is no media in the device.
@retval EFI_MEDIA_CHNAGED The MediaId does not matched the current device.
@retval EFI_MEDIA_CHANGED The MediaId does not match the current device.
@retval EFI_INVALID_PARAMETER The write request contains device addresses that are not
valid for the device.

Expand Down
2 changes: 1 addition & 1 deletion ArmPlatformPkg/Include/Library/ArmPlatformLib.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
//
#include <PiPei.h>
//
// The protocols, PPI and GUID defintions for this module
// The protocols, PPI and GUID definitions for this module
//
#include <Ppi/MasterBootMode.h>
#include <Ppi/BootInRecoveryMode.h>
Expand Down
2 changes: 1 addition & 1 deletion ArmPlatformPkg/Include/Library/PL011UartLib.h
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ PL011UartSetControl (
. EFI_SERIAL_OUTPUT_BUFFER_EMPTY : equal to one if the
transmit buffer is empty, 0 otherwise.
. EFI_SERIAL_HARDWARE_LOOPBACK_ENABLE : equal to one if
the hardware loopback is enabled (the ouput feeds the
the hardware loopback is enabled (the output feeds the
receive buffer), 0 otherwise.
. EFI_SERIAL_SOFTWARE_LOOPBACK_ENABLE : equal to one if
a loopback is accomplished by software, 0 otherwise.
Expand Down
2 changes: 1 addition & 1 deletion ArmPlatformPkg/Library/PL011UartLib/PL011UartLib.c
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ PL011UartSetControl (
. EFI_SERIAL_OUTPUT_BUFFER_EMPTY : equal to one if the
transmit buffer is empty, 0 otherwise.
. EFI_SERIAL_HARDWARE_LOOPBACK_ENABLE : equal to one if
the hardware loopback is enabled (the ouput feeds the
the hardware loopback is enabled (the output feeds the
receive buffer), 0 otherwise.
. EFI_SERIAL_SOFTWARE_LOOPBACK_ENABLE : equal to one if
a loopback is accomplished by software, 0 otherwise.
Expand Down
2 changes: 1 addition & 1 deletion ArmPlatformPkg/MemoryInitPei/MemoryInitPeim.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include <PiPei.h>

//
// The protocols, PPI and GUID defintions for this module
// The protocols, PPI and GUID definitions for this module
//
#include <Ppi/MasterBootMode.h>
#include <Ppi/BootInRecoveryMode.h>
Expand Down
2 changes: 1 addition & 1 deletion ArmPlatformPkg/PlatformPei/PlatformPeim.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include <PiPei.h>

//
// The protocols, PPI and GUID defintions for this module
// The protocols, PPI and GUID definitions for this module
//
#include <Ppi/MasterBootMode.h>
#include <Ppi/BootInRecoveryMode.h>
Expand Down
2 changes: 1 addition & 1 deletion ArmPlatformPkg/PrePeiCore/PrePeiCore.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ CreatePpiList (
PlatformPpiListSize = 0;
ArmPlatformGetPlatformPpiList (&PlatformPpiListSize, &PlatformPpiList);

// Copy the Common and Platform PPis in Temporrary Memory
// Copy the Common and Platform PPis in Temporary Memory
ListBase = PcdGet64 (PcdCPUCoresStackBase);
CopyMem ((VOID*)ListBase, gCommonPpiTable, sizeof(gCommonPpiTable));
CopyMem ((VOID*)(ListBase + sizeof(gCommonPpiTable)), PlatformPpiList, PlatformPpiListSize);
Expand Down
2 changes: 1 addition & 1 deletion ArmPlatformPkg/PrePi/PrePi.c
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ CEntryPoint (
ArmCallSEV ();
}
} else {
// Wait the Primay core has defined the address of the Global Variable region (event: ARM_CPU_EVENT_DEFAULT)
// Wait the Primary core has defined the address of the Global Variable region (event: ARM_CPU_EVENT_DEFAULT)
ArmCallWFE ();
}
}
Expand Down