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>
This commit is contained in:
Giri P Mudusuru
2016-07-08 14:21:03 +08:00
committed by Liming Gao
parent 9349c2e681
commit 241993480e
2 changed files with 6 additions and 6 deletions

View File

@ -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;