X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=MdeModulePkg%2FUniversal%2FConsole%2FTerminalDxe%2FTerminalConOut.c;h=4d7218e415481e7d1489b6392766df1f50d5df69;hb=d1102dba7210b95e41d06c2338a22ba6af248645;hp=5a8343162fee451d0839356210f86357679152e0;hpb=ca79bab7af4770c5eb578f6d495af01705aedb79;p=mirror_edk2.git diff --git a/MdeModulePkg/Universal/Console/TerminalDxe/TerminalConOut.c b/MdeModulePkg/Universal/Console/TerminalDxe/TerminalConOut.c index 5a8343162f..4d7218e415 100644 --- a/MdeModulePkg/Universal/Console/TerminalDxe/TerminalConOut.c +++ b/MdeModulePkg/Universal/Console/TerminalDxe/TerminalConOut.c @@ -1,7 +1,7 @@ /** @file Implementation for EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL protocol. -Copyright (c) 2006 - 2017, Intel Corporation. All rights reserved.
+Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.
Copyright (C) 2016 Silicon Graphics, Inc. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License @@ -451,7 +451,7 @@ TerminalConOutQueryMode ( // // Get Terminal device data structure pointer. // - TerminalDevice = TERMINAL_CON_OUT_DEV_FROM_THIS (This); + TerminalDevice = TERMINAL_CON_OUT_DEV_FROM_THIS (This); *Columns = TerminalDevice->TerminalConsoleModeData[ModeNumber].Columns; *Rows = TerminalDevice->TerminalConsoleModeData[ModeNumber].Rows; @@ -469,7 +469,7 @@ TerminalConOutQueryMode ( @param ModeNumber The text mode to set. @retval EFI_SUCCESS The requested text mode is set. - @retval EFI_DEVICE_ERROR The requested text mode cannot be set + @retval EFI_DEVICE_ERROR The requested text mode cannot be set because of serial device error. @retval EFI_UNSUPPORTED The text mode number is not valid. @@ -911,7 +911,7 @@ TerminalIsValidTextGraphics ( Detects if a valid ASCII char. @param Ascii An ASCII character. - + @retval TRUE If it is a valid ASCII character. @retval FALSE If it is not a valid ASCII character. @@ -935,7 +935,7 @@ TerminalIsValidAscii ( Detects if a valid EFI control character. @param CharC An input EFI Control character. - + @retval TRUE If it is a valid EFI control character. @retval FALSE If it is not a valid EFI control character.