mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-29 00:24:07 +02:00
ArmPlatformPkg: Fix Ecc error 8005
This patch fixes the following Ecc reported error: Variable name does not follow the rules: 1. First character should be upper case 2. Must contain lower case characters 3. No white space characters 4. Global variable name must start with a 'g' Indeed, according to the EDK II C Coding Standards Specification, s5.6.2.2 "Enumerated Types" and s4.3.4 Function and Data Names, elements of an enumerated type shoud be a mixed upper- and lower-case text. A max element is also added, as advised by s5.6.2.2.3 of the same document. Reference: https://edk2-docs.gitbook.io/edk-ii-c-coding-standards-specification/ Signed-off-by: Pierre Gondois <Pierre.Gondois@arm.com> Reviewed-by: Ard Biesheuvel <ard.biesheuvel@arm.com>
This commit is contained in:
parent
0785c619a5
commit
e590894536
@ -61,7 +61,7 @@ VideoCopyNoHorizontalOverlap (
|
|||||||
|
|
||||||
switch (BitsPerPixel) {
|
switch (BitsPerPixel) {
|
||||||
|
|
||||||
case LCD_BITS_PER_PIXEL_24:
|
case LcdBitsPerPixel_24:
|
||||||
|
|
||||||
WidthInBytes = Width * 4;
|
WidthInBytes = Width * 4;
|
||||||
|
|
||||||
@ -79,9 +79,9 @@ VideoCopyNoHorizontalOverlap (
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case LCD_BITS_PER_PIXEL_16_555:
|
case LcdBitsPerPixel_16_555:
|
||||||
case LCD_BITS_PER_PIXEL_16_565:
|
case LcdBitsPerPixel_16_565:
|
||||||
case LCD_BITS_PER_PIXEL_12_444:
|
case LcdBitsPerPixel_12_444:
|
||||||
|
|
||||||
WidthInBytes = Width * 2;
|
WidthInBytes = Width * 2;
|
||||||
|
|
||||||
@ -99,10 +99,10 @@ VideoCopyNoHorizontalOverlap (
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case LCD_BITS_PER_PIXEL_8:
|
case LcdBitsPerPixel_8:
|
||||||
case LCD_BITS_PER_PIXEL_4:
|
case LcdBitsPerPixel_4:
|
||||||
case LCD_BITS_PER_PIXEL_2:
|
case LcdBitsPerPixel_2:
|
||||||
case LCD_BITS_PER_PIXEL_1:
|
case LcdBitsPerPixel_1:
|
||||||
default:
|
default:
|
||||||
// Can't handle this case
|
// Can't handle this case
|
||||||
DEBUG((DEBUG_ERROR, "ArmVeGraphics_Blt: EfiBltVideoToVideo: INVALID Number of Bits Per Pixel: %d\n", BitsPerPixel));
|
DEBUG((DEBUG_ERROR, "ArmVeGraphics_Blt: EfiBltVideoToVideo: INVALID Number of Bits Per Pixel: %d\n", BitsPerPixel));
|
||||||
@ -149,7 +149,7 @@ VideoCopyHorizontalOverlap (
|
|||||||
|
|
||||||
switch (BitsPerPixel) {
|
switch (BitsPerPixel) {
|
||||||
|
|
||||||
case LCD_BITS_PER_PIXEL_24:
|
case LcdBitsPerPixel_24:
|
||||||
// Allocate a temporary buffer
|
// Allocate a temporary buffer
|
||||||
|
|
||||||
PixelBuffer32bit = (UINT32 *) AllocatePool((Height * Width) * sizeof(UINT32));
|
PixelBuffer32bit = (UINT32 *) AllocatePool((Height * Width) * sizeof(UINT32));
|
||||||
@ -191,9 +191,9 @@ VideoCopyHorizontalOverlap (
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
||||||
case LCD_BITS_PER_PIXEL_16_555:
|
case LcdBitsPerPixel_16_555:
|
||||||
case LCD_BITS_PER_PIXEL_16_565:
|
case LcdBitsPerPixel_16_565:
|
||||||
case LCD_BITS_PER_PIXEL_12_444:
|
case LcdBitsPerPixel_12_444:
|
||||||
// Allocate a temporary buffer
|
// Allocate a temporary buffer
|
||||||
PixelBuffer16bit = (UINT16 *) AllocatePool((Height * Width) * sizeof(UINT16));
|
PixelBuffer16bit = (UINT16 *) AllocatePool((Height * Width) * sizeof(UINT16));
|
||||||
|
|
||||||
@ -236,10 +236,10 @@ VideoCopyHorizontalOverlap (
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
||||||
case LCD_BITS_PER_PIXEL_8:
|
case LcdBitsPerPixel_8:
|
||||||
case LCD_BITS_PER_PIXEL_4:
|
case LcdBitsPerPixel_4:
|
||||||
case LCD_BITS_PER_PIXEL_2:
|
case LcdBitsPerPixel_2:
|
||||||
case LCD_BITS_PER_PIXEL_1:
|
case LcdBitsPerPixel_1:
|
||||||
default:
|
default:
|
||||||
// Can't handle this case
|
// Can't handle this case
|
||||||
DEBUG((DEBUG_ERROR, "ArmVeGraphics_Blt: EfiBltVideoToVideo: INVALID Number of Bits Per Pixel: %d\n", BitsPerPixel));
|
DEBUG((DEBUG_ERROR, "ArmVeGraphics_Blt: EfiBltVideoToVideo: INVALID Number of Bits Per Pixel: %d\n", BitsPerPixel));
|
||||||
@ -287,7 +287,7 @@ BltVideoFill (
|
|||||||
LcdPlatformGetBpp (This->Mode->Mode,&BitsPerPixel);
|
LcdPlatformGetBpp (This->Mode->Mode,&BitsPerPixel);
|
||||||
|
|
||||||
switch (BitsPerPixel) {
|
switch (BitsPerPixel) {
|
||||||
case LCD_BITS_PER_PIXEL_24:
|
case LcdBitsPerPixel_24:
|
||||||
WidthInBytes = Width * 4;
|
WidthInBytes = Width * 4;
|
||||||
|
|
||||||
// Copy the SourcePixel into every pixel inside the target rectangle
|
// Copy the SourcePixel into every pixel inside the target rectangle
|
||||||
@ -303,7 +303,7 @@ BltVideoFill (
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case LCD_BITS_PER_PIXEL_16_555:
|
case LcdBitsPerPixel_16_555:
|
||||||
// Convert the EFI pixel at the start of the BltBuffer(0,0) into a video display pixel
|
// Convert the EFI pixel at the start of the BltBuffer(0,0) into a video display pixel
|
||||||
Pixel16bit = (UINT16) (
|
Pixel16bit = (UINT16) (
|
||||||
( (EfiSourcePixel->Red << 7) & PixelInformation->RedMask )
|
( (EfiSourcePixel->Red << 7) & PixelInformation->RedMask )
|
||||||
@ -330,7 +330,7 @@ BltVideoFill (
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case LCD_BITS_PER_PIXEL_16_565:
|
case LcdBitsPerPixel_16_565:
|
||||||
// Convert the EFI pixel at the start of the BltBuffer(0,0) into a video display pixel
|
// Convert the EFI pixel at the start of the BltBuffer(0,0) into a video display pixel
|
||||||
Pixel16bit = (UINT16) (
|
Pixel16bit = (UINT16) (
|
||||||
( (EfiSourcePixel->Red << 8) & PixelInformation->RedMask )
|
( (EfiSourcePixel->Red << 8) & PixelInformation->RedMask )
|
||||||
@ -356,7 +356,7 @@ BltVideoFill (
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case LCD_BITS_PER_PIXEL_12_444:
|
case LcdBitsPerPixel_12_444:
|
||||||
// Convert the EFI pixel at the start of the BltBuffer(0,0) into a video display pixel
|
// Convert the EFI pixel at the start of the BltBuffer(0,0) into a video display pixel
|
||||||
Pixel16bit = (UINT16) (
|
Pixel16bit = (UINT16) (
|
||||||
( (EfiSourcePixel->Red >> 4) & PixelInformation->RedMask )
|
( (EfiSourcePixel->Red >> 4) & PixelInformation->RedMask )
|
||||||
@ -382,10 +382,10 @@ BltVideoFill (
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case LCD_BITS_PER_PIXEL_8:
|
case LcdBitsPerPixel_8:
|
||||||
case LCD_BITS_PER_PIXEL_4:
|
case LcdBitsPerPixel_4:
|
||||||
case LCD_BITS_PER_PIXEL_2:
|
case LcdBitsPerPixel_2:
|
||||||
case LCD_BITS_PER_PIXEL_1:
|
case LcdBitsPerPixel_1:
|
||||||
default:
|
default:
|
||||||
// Can't handle this case
|
// Can't handle this case
|
||||||
DEBUG((DEBUG_ERROR, "LcdGraphicsBlt: EfiBltVideoFill: INVALID Number of Bits Per Pixel: %d\n", BitsPerPixel));
|
DEBUG((DEBUG_ERROR, "LcdGraphicsBlt: EfiBltVideoFill: INVALID Number of Bits Per Pixel: %d\n", BitsPerPixel));
|
||||||
@ -443,7 +443,7 @@ BltVideoToBltBuffer (
|
|||||||
LcdPlatformGetBpp (This->Mode->Mode,&BitsPerPixel);
|
LcdPlatformGetBpp (This->Mode->Mode,&BitsPerPixel);
|
||||||
|
|
||||||
switch (BitsPerPixel) {
|
switch (BitsPerPixel) {
|
||||||
case LCD_BITS_PER_PIXEL_24:
|
case LcdBitsPerPixel_24:
|
||||||
WidthInBytes = Width * 4;
|
WidthInBytes = Width * 4;
|
||||||
|
|
||||||
// Access each line inside the Video Memory
|
// Access each line inside the Video Memory
|
||||||
@ -460,7 +460,7 @@ BltVideoToBltBuffer (
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case LCD_BITS_PER_PIXEL_16_555:
|
case LcdBitsPerPixel_16_555:
|
||||||
// Access each pixel inside the Video Memory
|
// Access each pixel inside the Video Memory
|
||||||
for (SourceLine = SourceY, DestinationLine = DestinationY;
|
for (SourceLine = SourceY, DestinationLine = DestinationY;
|
||||||
SourceLine < SourceY + Height;
|
SourceLine < SourceY + Height;
|
||||||
@ -487,7 +487,7 @@ BltVideoToBltBuffer (
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case LCD_BITS_PER_PIXEL_16_565:
|
case LcdBitsPerPixel_16_565:
|
||||||
// Access each pixel inside the Video Memory
|
// Access each pixel inside the Video Memory
|
||||||
for (SourceLine = SourceY, DestinationLine = DestinationY;
|
for (SourceLine = SourceY, DestinationLine = DestinationY;
|
||||||
SourceLine < SourceY + Height;
|
SourceLine < SourceY + Height;
|
||||||
@ -515,7 +515,7 @@ BltVideoToBltBuffer (
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case LCD_BITS_PER_PIXEL_12_444:
|
case LcdBitsPerPixel_12_444:
|
||||||
// Access each pixel inside the Video Memory
|
// Access each pixel inside the Video Memory
|
||||||
for (SourceLine = SourceY, DestinationLine = DestinationY;
|
for (SourceLine = SourceY, DestinationLine = DestinationY;
|
||||||
SourceLine < SourceY + Height;
|
SourceLine < SourceY + Height;
|
||||||
@ -542,10 +542,10 @@ BltVideoToBltBuffer (
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case LCD_BITS_PER_PIXEL_8:
|
case LcdBitsPerPixel_8:
|
||||||
case LCD_BITS_PER_PIXEL_4:
|
case LcdBitsPerPixel_4:
|
||||||
case LCD_BITS_PER_PIXEL_2:
|
case LcdBitsPerPixel_2:
|
||||||
case LCD_BITS_PER_PIXEL_1:
|
case LcdBitsPerPixel_1:
|
||||||
default:
|
default:
|
||||||
// Can't handle this case
|
// Can't handle this case
|
||||||
DEBUG((DEBUG_ERROR, "LcdGraphicsBlt: EfiBltVideoToBltBuffer: INVALID Number of Bits Per Pixel: %d\n", BitsPerPixel));
|
DEBUG((DEBUG_ERROR, "LcdGraphicsBlt: EfiBltVideoToBltBuffer: INVALID Number of Bits Per Pixel: %d\n", BitsPerPixel));
|
||||||
@ -601,7 +601,7 @@ BltBufferToVideo (
|
|||||||
LcdPlatformGetBpp (This->Mode->Mode,&BitsPerPixel);
|
LcdPlatformGetBpp (This->Mode->Mode,&BitsPerPixel);
|
||||||
|
|
||||||
switch (BitsPerPixel) {
|
switch (BitsPerPixel) {
|
||||||
case LCD_BITS_PER_PIXEL_24:
|
case LcdBitsPerPixel_24:
|
||||||
WidthInBytes = Width * 4;
|
WidthInBytes = Width * 4;
|
||||||
|
|
||||||
// Access each pixel inside the BltBuffer Memory
|
// Access each pixel inside the BltBuffer Memory
|
||||||
@ -618,7 +618,7 @@ BltBufferToVideo (
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case LCD_BITS_PER_PIXEL_16_555:
|
case LcdBitsPerPixel_16_555:
|
||||||
// Access each pixel inside the BltBuffer Memory
|
// Access each pixel inside the BltBuffer Memory
|
||||||
for (SourceLine = SourceY, DestinationLine = DestinationY;
|
for (SourceLine = SourceY, DestinationLine = DestinationY;
|
||||||
SourceLine < SourceY + Height;
|
SourceLine < SourceY + Height;
|
||||||
@ -645,7 +645,7 @@ BltBufferToVideo (
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case LCD_BITS_PER_PIXEL_16_565:
|
case LcdBitsPerPixel_16_565:
|
||||||
// Access each pixel inside the BltBuffer Memory
|
// Access each pixel inside the BltBuffer Memory
|
||||||
for (SourceLine = SourceY, DestinationLine = DestinationY;
|
for (SourceLine = SourceY, DestinationLine = DestinationY;
|
||||||
SourceLine < SourceY + Height;
|
SourceLine < SourceY + Height;
|
||||||
@ -672,7 +672,7 @@ BltBufferToVideo (
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case LCD_BITS_PER_PIXEL_12_444:
|
case LcdBitsPerPixel_12_444:
|
||||||
// Access each pixel inside the BltBuffer Memory
|
// Access each pixel inside the BltBuffer Memory
|
||||||
for (SourceLine = SourceY, DestinationLine = DestinationY;
|
for (SourceLine = SourceY, DestinationLine = DestinationY;
|
||||||
SourceLine < SourceY + Height;
|
SourceLine < SourceY + Height;
|
||||||
@ -699,10 +699,10 @@ BltBufferToVideo (
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case LCD_BITS_PER_PIXEL_8:
|
case LcdBitsPerPixel_8:
|
||||||
case LCD_BITS_PER_PIXEL_4:
|
case LcdBitsPerPixel_4:
|
||||||
case LCD_BITS_PER_PIXEL_2:
|
case LcdBitsPerPixel_2:
|
||||||
case LCD_BITS_PER_PIXEL_1:
|
case LcdBitsPerPixel_1:
|
||||||
default:
|
default:
|
||||||
// Can't handle this case
|
// Can't handle this case
|
||||||
DEBUG((DEBUG_ERROR, "LcdGraphicsBlt: EfiBltBufferToVideo: INVALID Number of Bits Per Pixel: %d\n", BitsPerPixel));
|
DEBUG((DEBUG_ERROR, "LcdGraphicsBlt: EfiBltBufferToVideo: INVALID Number of Bits Per Pixel: %d\n", BitsPerPixel));
|
||||||
|
@ -374,18 +374,18 @@ GetBytesPerPixel (
|
|||||||
)
|
)
|
||||||
{
|
{
|
||||||
switch (Bpp) {
|
switch (Bpp) {
|
||||||
case LCD_BITS_PER_PIXEL_24:
|
case LcdBitsPerPixel_24:
|
||||||
return 4;
|
return 4;
|
||||||
|
|
||||||
case LCD_BITS_PER_PIXEL_16_565:
|
case LcdBitsPerPixel_16_565:
|
||||||
case LCD_BITS_PER_PIXEL_16_555:
|
case LcdBitsPerPixel_16_555:
|
||||||
case LCD_BITS_PER_PIXEL_12_444:
|
case LcdBitsPerPixel_12_444:
|
||||||
return 2;
|
return 2;
|
||||||
|
|
||||||
case LCD_BITS_PER_PIXEL_8:
|
case LcdBitsPerPixel_8:
|
||||||
case LCD_BITS_PER_PIXEL_4:
|
case LcdBitsPerPixel_4:
|
||||||
case LCD_BITS_PER_PIXEL_2:
|
case LcdBitsPerPixel_2:
|
||||||
case LCD_BITS_PER_PIXEL_1:
|
case LcdBitsPerPixel_1:
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/** @file
|
/** @file
|
||||||
|
|
||||||
Copyright (c) 2011-2018, ARM Ltd. All rights reserved.<BR>
|
Copyright (c) 2011-2020, Arm Limited. All rights reserved.<BR>
|
||||||
SPDX-License-Identifier: BSD-2-Clause-Patent
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||||
|
|
||||||
**/
|
**/
|
||||||
@ -197,14 +197,15 @@
|
|||||||
Register
|
Register
|
||||||
**/
|
**/
|
||||||
typedef enum {
|
typedef enum {
|
||||||
LCD_BITS_PER_PIXEL_1 = 0,
|
LcdBitsPerPixel_1 = 0,
|
||||||
LCD_BITS_PER_PIXEL_2,
|
LcdBitsPerPixel_2,
|
||||||
LCD_BITS_PER_PIXEL_4,
|
LcdBitsPerPixel_4,
|
||||||
LCD_BITS_PER_PIXEL_8,
|
LcdBitsPerPixel_8,
|
||||||
LCD_BITS_PER_PIXEL_16_555,
|
LcdBitsPerPixel_16_555,
|
||||||
LCD_BITS_PER_PIXEL_24,
|
LcdBitsPerPixel_24,
|
||||||
LCD_BITS_PER_PIXEL_16_565,
|
LcdBitsPerPixel_16_565,
|
||||||
LCD_BITS_PER_PIXEL_12_444
|
LcdBitsPerPixel_12_444,
|
||||||
|
LcdBitsPerPixel_Max
|
||||||
} LCD_BPP;
|
} LCD_BPP;
|
||||||
|
|
||||||
// Display timing settings.
|
// Display timing settings.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user