From 7b1646d4542e58058b02163a31a7228f4dba1611 Mon Sep 17 00:00:00 2001 From: Rebecca Cran Date: Tue, 30 Jul 2024 09:56:41 -0600 Subject: 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 --- ArmPlatformPkg/Include/Library/LcdPlatformLib.h | 2 +- ArmPlatformPkg/Library/ArmMaliDp/ArmMaliDp.c | 2 +- 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 -- cgit