From e9991e29ea5efb91324a1b1e10fbf553867964df Mon Sep 17 00:00:00 2001 From: Stefano Garzarella Date: Wed, 27 Mar 2019 10:56:33 +0100 Subject: block/vhdx: Remove redundant IEC binary prefixes definition MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit IEC binary prefixes are already defined in "qemu/units.h", so we can remove redundant definitions in "block/vhdx.h". Signed-off-by: Stefano Garzarella Reviewed-by: Philippe Mathieu-Daudé Reviewed-by: John Snow Signed-off-by: Kevin Wolf --- block/vhdx.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'block/vhdx.h') diff --git a/block/vhdx.h b/block/vhdx.h index 1bfb4e4..bf72090 100644 --- a/block/vhdx.h +++ b/block/vhdx.h @@ -17,11 +17,7 @@ #ifndef BLOCK_VHDX_H #define BLOCK_VHDX_H - -#define KiB (1 * 1024) -#define MiB (KiB * 1024) -#define GiB (MiB * 1024) -#define TiB ((uint64_t) GiB * 1024) +#include "qemu/units.h" #define DEFAULT_LOG_SIZE 1048576 /* 1MiB */ /* Structures and fields present in the VHDX file */ -- cgit v1.1