From f48c81f12a45186e2f9015040edf8ee64bbcbfe3 Mon Sep 17 00:00:00 2001 From: Laszlo Ersek Date: Wed, 26 Oct 2016 14:14:47 +0200 Subject: [PATCH] OvmfPkg/XenBusDxe: remove module-local ARRAY_SIZE macro Rely on the central macro definition from "MdePkg/Include/Base.h" instead. Cc: Gary Lin Cc: Jordan Justen Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Laszlo Ersek Reviewed-by: Gary Lin Reviewed-by: Jordan Justen --- OvmfPkg/XenBusDxe/XenStore.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/OvmfPkg/XenBusDxe/XenStore.c b/OvmfPkg/XenBusDxe/XenStore.c index 9eeb6f54fb..1666c4b8f9 100644 --- a/OvmfPkg/XenBusDxe/XenStore.c +++ b/OvmfPkg/XenBusDxe/XenStore.c @@ -713,9 +713,6 @@ static XenStoreErrors gXenStoreErrors[] = { { XENSTORE_STATUS_EISCONN, "EISCONN" }, { XENSTORE_STATUS_E2BIG, "E2BIG" } }; -#ifndef ARRAY_SIZE -#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0])) -#endif STATIC XENSTORE_STATUS -- 2.39.2