diff options
author | Giri P Mudusuru <giri.p.mudusuru@intel.com> | 2016-07-08 14:21:03 +0800 |
---|---|---|
committer | Liming Gao <liming.gao@intel.com> | 2016-07-11 10:29:48 +0800 |
commit | 241993480e8e9ff4526e206ba8e4fa97e695ed4a (patch) | |
tree | ae48b0fdacded1bb0403e18f1567f8211f75b678 /IntelFrameworkModulePkg/Universal/BdsDxe | |
parent | 9349c2e68164ea4b757ea938c79c938ab258885b (diff) | |
download | edk2-platforms-241993480e8e9ff4526e206ba8e4fa97e695ed4a.tar.xz |
IntelFrameworkModulePkg: Fix typos in comments
- requried to required
Cc: Jeff Fan <jeff.fan@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Giri P Mudusuru <giri.p.mudusuru@intel.com>
Reviewed-by: Jeff Fan <jeff.fan@intel.com>
Diffstat (limited to 'IntelFrameworkModulePkg/Universal/BdsDxe')
-rw-r--r-- | IntelFrameworkModulePkg/Universal/BdsDxe/FrontPage.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/IntelFrameworkModulePkg/Universal/BdsDxe/FrontPage.c b/IntelFrameworkModulePkg/Universal/BdsDxe/FrontPage.c index 9f4d328357..fc8e50f145 100644 --- a/IntelFrameworkModulePkg/Universal/BdsDxe/FrontPage.c +++ b/IntelFrameworkModulePkg/Universal/BdsDxe/FrontPage.c @@ -1327,7 +1327,7 @@ BdsSetConsoleMode ( if (IsSetupMode) {
//
- // The requried resolution and text mode is setup mode.
+ // The required resolution and text mode is setup mode.
//
NewHorizontalResolution = mSetupHorizontalResolution;
NewVerticalResolution = mSetupVerticalResolution;
@@ -1383,7 +1383,7 @@ BdsSetConsoleMode ( return EFI_SUCCESS;
} else {
//
- // If current text mode is different from requried text mode. Set new video mode
+ // If current text mode is different from required text mode. Set new video mode
//
for (Index = 0; Index < MaxTextMode; Index++) {
Status = SimpleTextOut->QueryMode (SimpleTextOut, Index, &CurrentColumn, &CurrentRow);
@@ -1408,7 +1408,7 @@ BdsSetConsoleMode ( }
if (Index == MaxTextMode) {
//
- // If requried text mode is not supported, return error.
+ // If required text mode is not supported, return error.
//
FreePool (Info);
return EFI_UNSUPPORTED;
|