Fix several minor coding style issues.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8092 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@@ -1067,6 +1067,7 @@ AsciiErrorPrint (
|
||||
...
|
||||
);
|
||||
|
||||
|
||||
/**
|
||||
Prints a formatted Unicode string to a graphics console device specified by
|
||||
ConsoleOutputHandle defined in the EFI_SYSTEM_TABLE at the given (X,Y) coordinates.
|
||||
@@ -1087,8 +1088,8 @@ AsciiErrorPrint (
|
||||
If Format is NULL, then ASSERT().
|
||||
If Format is not aligned on a 16-bit boundary, then ASSERT().
|
||||
|
||||
@param X X coordinate to print the string.
|
||||
@param Y Y coordinate to print the string.
|
||||
@param PointX X coordinate to print the string.
|
||||
@param PointY Y coordinate to print the string.
|
||||
@param ForeGround The foreground color of the string being printed. This is
|
||||
an optional parameter that may be NULL. If it is NULL,
|
||||
then the foreground color of the current ConOut device
|
||||
@@ -1108,8 +1109,8 @@ AsciiErrorPrint (
|
||||
UINTN
|
||||
EFIAPI
|
||||
PrintXY (
|
||||
IN UINTN X,
|
||||
IN UINTN Y,
|
||||
IN UINTN PointX,
|
||||
IN UINTN PointY,
|
||||
IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *ForeGround, OPTIONAL
|
||||
IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *BackGround, OPTIONAL
|
||||
IN CONST CHAR16 *Format,
|
||||
@@ -1135,8 +1136,8 @@ PrintXY (
|
||||
string is printed, and 0 is returned.
|
||||
If Format is NULL, then ASSERT().
|
||||
|
||||
@param X X coordinate to print the string.
|
||||
@param Y Y coordinate to print the string.
|
||||
@param PointX X coordinate to print the string.
|
||||
@param PointY Y coordinate to print the string.
|
||||
@param ForeGround The foreground color of the string being printed. This is
|
||||
an optional parameter that may be NULL. If it is NULL,
|
||||
then the foreground color of the current ConOut device
|
||||
@@ -1156,8 +1157,8 @@ PrintXY (
|
||||
UINTN
|
||||
EFIAPI
|
||||
AsciiPrintXY (
|
||||
IN UINTN X,
|
||||
IN UINTN Y,
|
||||
IN UINTN PointX,
|
||||
IN UINTN PointY,
|
||||
IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *ForeGround, OPTIONAL
|
||||
IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *BackGround, OPTIONAL
|
||||
IN CONST CHAR8 *Format,
|
||||
|
@@ -333,7 +333,7 @@ ScsiRequestSenseCommand (
|
||||
Executes the SCSI Read Capacity command on the SCSI target specified by ScsiIo.
|
||||
If Timeout is zero, then this function waits indefinitely for the command to complete.
|
||||
If Timeout is greater than zero, then the command is executed and will timeout after
|
||||
Timeout 100 ns units. The PMI parameter is used to construct the CDB for this SCSI command.
|
||||
Timeout 100 ns units. The Pmi parameter is used to construct the CDB for this SCSI command.
|
||||
If ScsiIo is NULL, then ASSERT().
|
||||
If SenseDataLength is NULL, then ASSERT().
|
||||
If HostAdapterStatus is NULL, then ASSERT().
|
||||
@@ -348,7 +348,7 @@ ScsiRequestSenseCommand (
|
||||
@param[out] TargetStatus The status of the target.
|
||||
@param[in, out] DataBuffer A pointer to a data buffer.
|
||||
@param[in, out] DataLength The length of data buffer.
|
||||
@param[in] PMI Partial medium indicator.
|
||||
@param[in] Pmi Partial medium indicator.
|
||||
|
||||
@retval EFI_SUCCESS Command is executed successfully.
|
||||
@retval EFI_BAD_BUFFER_SIZE The SCSI Request Packet was executed, but the entire
|
||||
@@ -373,7 +373,7 @@ ScsiReadCapacityCommand (
|
||||
OUT UINT8 *TargetStatus,
|
||||
IN OUT VOID *DataBuffer, OPTIONAL
|
||||
IN OUT UINT32 *DataLength,
|
||||
IN BOOLEAN PMI
|
||||
IN BOOLEAN Pmi
|
||||
);
|
||||
|
||||
|
||||
@@ -388,7 +388,7 @@ ScsiReadCapacityCommand (
|
||||
@param TargetStatus The status of the target.
|
||||
@param DataBuffer A pointer to a data buffer.
|
||||
@param DataLength The length of data buffer.
|
||||
@param PMI Partial medium indicator.
|
||||
@param Pmi Partial medium indicator.
|
||||
|
||||
@retval EFI_SUCCESS The status of the unit is tested successfully.
|
||||
@retval EFI_BAD_BUFFER_SIZE The SCSI Request Packet was executed,
|
||||
@@ -408,7 +408,6 @@ ScsiReadCapacityCommand (
|
||||
Request Packet to execute.
|
||||
|
||||
**/
|
||||
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
ScsiReadCapacity16Command (
|
||||
@@ -420,7 +419,7 @@ ScsiReadCapacity16Command (
|
||||
OUT UINT8 *TargetStatus,
|
||||
OUT VOID *DataBuffer,
|
||||
IN OUT UINT32 *DataLength,
|
||||
IN BOOLEAN PMI
|
||||
IN BOOLEAN Pmi
|
||||
);
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user