mirror of https://github.com/acidanthera/audk.git
Check comments, format and fix some typo.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7154 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
cfcbb8bc54
commit
7601dbe7c5
|
@ -1883,17 +1883,17 @@ EraseCursor (
|
||||||
IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *This
|
IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *This
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
GRAPHICS_CONSOLE_DEV *Private;
|
GRAPHICS_CONSOLE_DEV *Private;
|
||||||
EFI_SIMPLE_TEXT_OUTPUT_MODE *CurrentMode;
|
EFI_SIMPLE_TEXT_OUTPUT_MODE *CurrentMode;
|
||||||
INTN GlyphX;
|
INTN GlyphX;
|
||||||
INTN GlyphY;
|
INTN GlyphY;
|
||||||
EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput;
|
EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput;
|
||||||
EFI_UGA_DRAW_PROTOCOL *UgaDraw;
|
EFI_UGA_DRAW_PROTOCOL *UgaDraw;
|
||||||
EFI_GRAPHICS_OUTPUT_BLT_PIXEL_UNION Foreground;
|
EFI_GRAPHICS_OUTPUT_BLT_PIXEL_UNION Foreground;
|
||||||
EFI_GRAPHICS_OUTPUT_BLT_PIXEL_UNION Background;
|
EFI_GRAPHICS_OUTPUT_BLT_PIXEL_UNION Background;
|
||||||
EFI_GRAPHICS_OUTPUT_BLT_PIXEL_UNION BltChar[EFI_GLYPH_HEIGHT][EFI_GLYPH_WIDTH];
|
EFI_GRAPHICS_OUTPUT_BLT_PIXEL_UNION BltChar[EFI_GLYPH_HEIGHT][EFI_GLYPH_WIDTH];
|
||||||
UINTN PosX;
|
UINTN PosX;
|
||||||
UINTN PosY;
|
UINTN PosY;
|
||||||
|
|
||||||
CurrentMode = This->Mode;
|
CurrentMode = This->Mode;
|
||||||
|
|
||||||
|
@ -1991,8 +1991,8 @@ EraseCursor (
|
||||||
@param[in] ImageHandle The firmware allocated handle for the EFI image.
|
@param[in] ImageHandle The firmware allocated handle for the EFI image.
|
||||||
@param[in] SystemTable A pointer to the EFI System Table.
|
@param[in] SystemTable A pointer to the EFI System Table.
|
||||||
|
|
||||||
@retval EFI_SUCCESS The entry point is executed successfully.
|
@retval EFI_SUCCESS The entry point is executed successfully.
|
||||||
@retval other Some error occurs when executing this entry point.
|
@return other Some error occurs when executing this entry point.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
EFI_STATUS
|
EFI_STATUS
|
||||||
|
@ -2017,7 +2017,6 @@ InitializeGraphicsConsole (
|
||||||
);
|
);
|
||||||
ASSERT_EFI_ERROR (Status);
|
ASSERT_EFI_ERROR (Status);
|
||||||
|
|
||||||
|
|
||||||
return Status;
|
return Status;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -230,20 +230,21 @@ ReturnNarrowFontSize (
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reset the text output device hardware and optionally run diagnostics.
|
||||||
|
|
||||||
Implements SIMPLE_TEXT_OUTPUT.Reset().
|
Implements SIMPLE_TEXT_OUTPUT.Reset().
|
||||||
If ExtendeVerification is TRUE, then perform dependent Graphics Console
|
If ExtendeVerification is TRUE, then perform dependent Graphics Console
|
||||||
device reset, and set display mode to mode 0.
|
device reset, and set display mode to mode 0.
|
||||||
If ExtendedVerification is FALSE, only set display mode to mode 0.
|
If ExtendedVerification is FALSE, only set display mode to mode 0.
|
||||||
|
|
||||||
@param This Indicates the calling context.
|
@param This Protocol instance pointer.
|
||||||
@param ExtendedVerification Indicates that the driver may perform a more
|
@param ExtendedVerification Indicates that the driver may perform a more
|
||||||
exhaustive verification operation of the device
|
exhaustive verification operation of the device
|
||||||
during reset.
|
during reset.
|
||||||
|
|
||||||
@return EFI_SUCCESS
|
@retval EFI_SUCCESS The text output device was reset.
|
||||||
@return The reset operation succeeds.
|
@retval EFI_DEVICE_ERROR The text output device is not functioning correctly and
|
||||||
@return EFI_DEVICE_ERROR
|
could not be reset.
|
||||||
@return The Graphics Console is not functioning correctly
|
|
||||||
|
|
||||||
**/
|
**/
|
||||||
EFI_STATUS
|
EFI_STATUS
|
||||||
|
|
|
@ -84,7 +84,7 @@ typedef struct {
|
||||||
#define IS_UART_DEVICEPATH(dp) (DevicePathType (dp) == MESSAGING_DEVICE_PATH && DevicePathSubType (dp) == MSG_UART_DP)
|
#define IS_UART_DEVICEPATH(dp) (DevicePathType (dp) == MESSAGING_DEVICE_PATH && DevicePathSubType (dp) == MSG_UART_DP)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Debug Port Driver entry pointo.
|
Debug Port Driver entry point.
|
||||||
|
|
||||||
Reads DebugPort variable to determine what device and settings to use as the
|
Reads DebugPort variable to determine what device and settings to use as the
|
||||||
debug port. Binds exclusively to SerialIo. Reverts to defaults if no variable
|
debug port. Binds exclusively to SerialIo. Reverts to defaults if no variable
|
||||||
|
|
|
@ -33,7 +33,7 @@ EFI_DEBUG_SUPPORT_PROTOCOL mDebugSupportProtocolInterface = {
|
||||||
@param[in] SystemTable A pointer to the EFI System Table.
|
@param[in] SystemTable A pointer to the EFI System Table.
|
||||||
|
|
||||||
@retval EFI_SUCCESS The entry point is executed successfully.
|
@retval EFI_SUCCESS The entry point is executed successfully.
|
||||||
@retval EFI_ALREADY_STARTED DebugS upport protocol is installed already.
|
@retval EFI_ALREADY_STARTED Debug Support protocol is installed already.
|
||||||
@retval other Some error occurs when executing this entry point.
|
@retval other Some error occurs when executing this entry point.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
|
|
|
@ -86,7 +86,7 @@ Vect2Desc (
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Initializes driver's handler registration databas.
|
Initializes driver's handler registration database.
|
||||||
|
|
||||||
This code executes in boot services context
|
This code executes in boot services context
|
||||||
Must be public because it's referenced from DebugSupport.c
|
Must be public because it's referenced from DebugSupport.c
|
||||||
|
|
Loading…
Reference in New Issue