diff options
author | Rebecca Cran <rebecca@bsdio.com> | 2024-07-30 09:56:41 -0600 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2024-08-01 19:53:47 +0000 |
commit | 7b1646d4542e58058b02163a31a7228f4dba1611 (patch) | |
tree | 694bbc6a971cf79720741b598ad8e1a998d6a5b5 | |
parent | cf60ca43664c45477a65214ba398d58b63474ac1 (diff) | |
download | edk2-7b1646d4542e58058b02163a31a7228f4dba1611.tar.gz edk2-7b1646d4542e58058b02163a31a7228f4dba1611.tar.bz2 edk2-7b1646d4542e58058b02163a31a7228f4dba1611.zip |
ArmPlatformPkg: Fix some spelling mistakes found by cspell
When cspell is installed (via `npm install cspell`), CI checks for
spelling mistakes. There are currently a very large number of them: some
are genuine mistakes while others are words or acryonyms that cspell
doesn't know.
Fix a few of the misspellings in ArmPlatformPkg.
Signed-off-by: Rebecca Cran <rebecca@bsdio.com>
-rw-r--r-- | ArmPlatformPkg/Include/Library/LcdPlatformLib.h | 2 | ||||
-rw-r--r-- | ArmPlatformPkg/Library/ArmMaliDp/ArmMaliDp.c | 2 | ||||
-rw-r--r-- | ArmPlatformPkg/Library/PL111Lcd/PL111Lcd.c | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/ArmPlatformPkg/Include/Library/LcdPlatformLib.h b/ArmPlatformPkg/Include/Library/LcdPlatformLib.h index b5628ece56..2049e5ef60 100644 --- a/ArmPlatformPkg/Include/Library/LcdPlatformLib.h +++ b/ArmPlatformPkg/Include/Library/LcdPlatformLib.h @@ -220,7 +220,7 @@ typedef struct { @param[in] Handle Handle to the LCD device instance.
- @retval EFI_SUCCESS Plaform library initialized successfully.
+ @retval EFI_SUCCESS Platform library initialized successfully.
@retval !(EFI_SUCCESS) Other errors.
**/
EFI_STATUS
diff --git a/ArmPlatformPkg/Library/ArmMaliDp/ArmMaliDp.c b/ArmPlatformPkg/Library/ArmMaliDp/ArmMaliDp.c index d01c910f6e..cea7ce2cc7 100644 --- a/ArmPlatformPkg/Library/ArmMaliDp/ArmMaliDp.c +++ b/ArmPlatformPkg/Library/ArmMaliDp/ArmMaliDp.c @@ -287,7 +287,7 @@ LcdInitialize ( return EFI_SUCCESS;
}
-/** Set ARM Mali DP in cofiguration mode.
+/** Set ARM Mali DP in configuration mode.
The ARM Mali DP must be in the configuration mode for
configuration of the H_INTERVALS, V_INTERVALS, SYNC_CONTROL
diff --git a/ArmPlatformPkg/Library/PL111Lcd/PL111Lcd.c b/ArmPlatformPkg/Library/PL111Lcd/PL111Lcd.c index 07f9b0f6be..b0b0cd8a85 100644 --- a/ArmPlatformPkg/Library/PL111Lcd/PL111Lcd.c +++ b/ArmPlatformPkg/Library/PL111Lcd/PL111Lcd.c @@ -19,7 +19,7 @@ @retval EFI_SUCCESS Returns success if platform implements a
PL111 controller.
- @retval EFI_NOT_FOUND PL111 display controller not found the plaform.
+ @retval EFI_NOT_FOUND PL111 display controller not found the platform.
**/
EFI_STATUS
LcdIdentify (
@@ -71,9 +71,9 @@ LcdInitialize ( /** Set requested mode of the display.
- @param[in] ModeNumbe Display mode number.
+ @param[in] ModeNumber Display mode number.
- @retval EFI_SUCCESS Display mode set successfuly.
+ @retval EFI_SUCCESS Display mode set successfully.
@retval !(EFI_SUCCESS) Other errors.
**/
EFI_STATUS
|