MdeModulePkg/MemoryProfileInfo: rebase to ARRAY_SIZE()
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:
@@ -343,16 +343,16 @@ ProfileActionToStr (
|
|||||||
|
|
||||||
if (IsForSmm) {
|
if (IsForSmm) {
|
||||||
ActionString = mSmmActionString;
|
ActionString = mSmmActionString;
|
||||||
ActionStringCount = sizeof (mSmmActionString) / sizeof (mSmmActionString[0]);
|
ActionStringCount = ARRAY_SIZE (mSmmActionString);
|
||||||
} else {
|
} else {
|
||||||
ActionString = mActionString;
|
ActionString = mActionString;
|
||||||
ActionStringCount = sizeof (mActionString) / sizeof (mActionString[0]);
|
ActionStringCount = ARRAY_SIZE (mActionString);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((UINTN) (UINT32) Action < ActionStringCount) {
|
if ((UINTN) (UINT32) Action < ActionStringCount) {
|
||||||
return ActionString[Action];
|
return ActionString[Action];
|
||||||
}
|
}
|
||||||
for (Index = 0; Index < sizeof (mExtActionString) / sizeof (mExtActionString[0]); Index++) {
|
for (Index = 0; Index < ARRAY_SIZE (mExtActionString); Index++) {
|
||||||
if (mExtActionString[Index].Action == Action) {
|
if (mExtActionString[Index].Action == Action) {
|
||||||
return mExtActionString[Index].String;
|
return mExtActionString[Index].String;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user