summaryrefslogtreecommitdiff
path: root/MdePkg/Library/UefiLib
diff options
context:
space:
mode:
authorqhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524>2009-04-15 14:31:45 +0000
committerqhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524>2009-04-15 14:31:45 +0000
commit51969ecb37e8d671c0237e936d79a51b7ca646ff (patch)
tree1d62d24d3a5cf080378d7dc0ec8d73ee6c017e19 /MdePkg/Library/UefiLib
parentaeb90c4a15e90a85121e47b541baeaeff1e150a4 (diff)
downloadedk2-platforms-51969ecb37e8d671c0237e936d79a51b7ca646ff.tar.xz
Fix several minor coding style issues.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8092 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/UefiLib')
-rw-r--r--MdePkg/Library/UefiLib/UefiLibPrint.c46
1 files changed, 23 insertions, 23 deletions
diff --git a/MdePkg/Library/UefiLib/UefiLibPrint.c b/MdePkg/Library/UefiLib/UefiLibPrint.c
index 66fabdc923..d9268ef52d 100644
--- a/MdePkg/Library/UefiLib/UefiLibPrint.c
+++ b/MdePkg/Library/UefiLib/UefiLibPrint.c
@@ -306,9 +306,9 @@ AsciiErrorPrint (
If the EFI_HII_FONT_PROTOCOL is not present in the handle database, then no
string is printed, and 0 is returned.
- @param X X coordinate to print the string.
- @param Y Y coordinate to print the string.
- @param Foreground The forground color of the string being printed. This is
+ @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
in the EFI_SYSTEM_TABLE is used.
@@ -325,8 +325,8 @@ AsciiErrorPrint (
**/
UINTN
InternalPrintGraphic (
- IN UINTN X,
- IN UINTN Y,
+ IN UINTN PointX,
+ IN UINTN PointY,
IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *Foreground,
IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *Background,
IN CHAR16 *Buffer,
@@ -459,8 +459,8 @@ InternalPrintGraphic (
Buffer,
&FontInfo,
&Blt,
- X,
- Y,
+ PointX,
+ PointY,
NULL,
NULL,
NULL
@@ -483,8 +483,8 @@ InternalPrintGraphic (
Buffer,
&FontInfo,
&Blt,
- X,
- Y,
+ PointX,
+ PointY,
&RowInfoArray,
&RowInfoArraySize,
NULL
@@ -502,10 +502,10 @@ InternalPrintGraphic (
UgaDraw,
(EFI_UGA_PIXEL *) Blt->Image.Bitmap,
EfiUgaBltBufferToVideo,
- X,
- Y,
- X,
- Y,
+ PointX,
+ PointY,
+ PointX,
+ PointY,
RowInfoArray[0].LineWidth,
RowInfoArray[0].LineHeight,
Blt->Width * sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL)
@@ -549,8 +549,8 @@ Error:
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
@@ -570,8 +570,8 @@ Error:
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,
@@ -596,7 +596,7 @@ PrintXY (
PrintNum = UnicodeVSPrint (Buffer, BufferSize, Format, Marker);
- ReturnNum = InternalPrintGraphic (X, Y, ForeGround, BackGround, Buffer, PrintNum);
+ ReturnNum = InternalPrintGraphic (PointX, PointY, ForeGround, BackGround, Buffer, PrintNum);
FreePool (Buffer);
@@ -622,8 +622,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
@@ -643,8 +643,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,
@@ -668,7 +668,7 @@ AsciiPrintXY (
PrintNum = UnicodeSPrintAsciiFormat (Buffer, BufferSize, Format, Marker);
- ReturnNum = InternalPrintGraphic (X, Y, ForeGround, BackGround, Buffer, PrintNum);
+ ReturnNum = InternalPrintGraphic (PointX, PointY, ForeGround, BackGround, Buffer, PrintNum);
FreePool (Buffer);