diff options
author | Laszlo Ersek <lersek@redhat.com> | 2016-10-26 14:14:47 +0200 |
---|---|---|
committer | Laszlo Ersek <lersek@redhat.com> | 2016-10-27 10:50:14 +0200 |
commit | e2c78bec3f898b79b81fe9c7e49aa536a5695324 (patch) | |
tree | c96245abafe7e98dcf718bd8f1e46284824c41bd /OvmfPkg | |
parent | de69024c83558412ad6159488d40a36005f1dc14 (diff) | |
download | edk2-platforms-e2c78bec3f898b79b81fe9c7e49aa536a5695324.tar.xz |
OvmfPkg/PlatformBootManagerLib: remove module-local ARRAY_SIZE macro
Rely on the central macro definition from "MdePkg/Include/Base.h" instead.
Cc: Jordan Justen <jordan.l.justen@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
Diffstat (limited to 'OvmfPkg')
-rw-r--r-- | OvmfPkg/Library/PlatformBootManagerLib/BdsPlatform.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/OvmfPkg/Library/PlatformBootManagerLib/BdsPlatform.c b/OvmfPkg/Library/PlatformBootManagerLib/BdsPlatform.c index 16618a8f57..66ee590f42 100644 --- a/OvmfPkg/Library/PlatformBootManagerLib/BdsPlatform.c +++ b/OvmfPkg/Library/PlatformBootManagerLib/BdsPlatform.c @@ -38,13 +38,6 @@ CONST UINT8 PciHostIrqs[] = { };
//
-// Array Size macro
-//
-#ifndef ARRAY_SIZE
-#define ARRAY_SIZE(array) (sizeof (array) / sizeof (array[0]))
-#endif
-
-//
// Type definitions
//
|