summaryrefslogtreecommitdiff
path: root/OvmfPkg/Library/LoadLinuxLib
diff options
context:
space:
mode:
authorGary Lin <glin@suse.com>2016-10-27 18:16:15 +0800
committerLaszlo Ersek <lersek@redhat.com>2016-10-27 18:21:06 +0200
commit5a5025e485b299c76ebed79fa63ba88a5b219a12 (patch)
tree98b46b4a3bce19139e37f8d84a488b6968bb1db7 /OvmfPkg/Library/LoadLinuxLib
parent1399565a93a7457db262ae2cb81431062fcc30c4 (diff)
downloadedk2-platforms-5a5025e485b299c76ebed79fa63ba88a5b219a12.tar.xz
OvmfPkg: Make more use of ARRAY_SIZE()
Convert the remaining pieces to make the code shorter and more readable. Cc: Justen Jordan <jordan.l.justen@intel.com> Cc: Laszlo Ersek <lersek@redhat.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Gary Lin <glin@suse.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com> [lersek@redhat.com: tweak subject line] Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Diffstat (limited to 'OvmfPkg/Library/LoadLinuxLib')
-rw-r--r--OvmfPkg/Library/LoadLinuxLib/Linux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/OvmfPkg/Library/LoadLinuxLib/Linux.c b/OvmfPkg/Library/LoadLinuxLib/Linux.c
index 9c996adfbb..68d15377bf 100644
--- a/OvmfPkg/Library/LoadLinuxLib/Linux.c
+++ b/OvmfPkg/Library/LoadLinuxLib/Linux.c
@@ -357,7 +357,7 @@ SetupLinuxMemmap (
LastE820->size += EFI_PAGES_TO_SIZE ((UINTN) MemoryMap->NumberOfPages);
LastEndAddr += EFI_PAGES_TO_SIZE ((UINTN) MemoryMap->NumberOfPages);
} else {
- if (E820EntryCount >= (sizeof (Bp->e820_map) / sizeof (Bp->e820_map[0]))) {
+ if (E820EntryCount >= ARRAY_SIZE (Bp->e820_map)) {
break;
}
E820->type = (UINT32) E820Type;