MdeModulePkg/DisplayEngineDxe: rebase to ARRAY_SIZE()
Cc: Dandan Bi <dandan.bi@intel.com> Cc: Eric Dong <eric.dong@intel.com> Cc: Feng Tian <feng.tian@intel.com> Cc: Star Zeng <star.zeng@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Feng Tian <feng.tian@Intel.com> Reviewed-by: Star Zeng <star.zeng@intel.com> Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
This commit is contained in:
@@ -49,7 +49,7 @@ SCAN_CODE_TO_SCREEN_OPERATION gScanCodeToOperation[] = {
|
||||
}
|
||||
};
|
||||
|
||||
UINTN mScanCodeNumber = sizeof (gScanCodeToOperation) / sizeof (gScanCodeToOperation[0]);
|
||||
UINTN mScanCodeNumber = ARRAY_SIZE (gScanCodeToOperation);
|
||||
|
||||
SCREEN_OPERATION_T0_CONTROL_FLAG gScreenOperationToControlFlag[] = {
|
||||
{
|
||||
@@ -3248,7 +3248,7 @@ UiDisplayMenu (
|
||||
}
|
||||
|
||||
for (Index = 0;
|
||||
Index < sizeof (gScreenOperationToControlFlag) / sizeof (gScreenOperationToControlFlag[0]);
|
||||
Index < ARRAY_SIZE (gScreenOperationToControlFlag);
|
||||
Index++
|
||||
) {
|
||||
if (ScreenOperation == gScreenOperationToControlFlag[Index].ScreenOperation) {
|
||||
|
Reference in New Issue
Block a user