]> www.infradead.org Git - users/dwmw2/qemu.git/commitdiff
vmstate: Remove redefinition of VMSTATE_UINT32_ARRAY
authorSoren Brinkmann <soren.brinkmann@xilinx.com>
Fri, 14 Aug 2015 06:16:27 +0000 (23:16 -0700)
committerAmit Shah <amit.shah@redhat.com>
Tue, 29 Sep 2015 06:02:45 +0000 (11:32 +0530)
The macro is defined twice in identical ways.

Signed-off-by: Soren Brinkmann <soren.brinkmann@xilinx.com>
Message-Id: <1439532987-16335-1-git-send-email-soren.brinkmann@xilinx.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Amit Shah <amit.shah@redhat.com>
Signed-off-by: Amit Shah <amit.shah@redhat.com>
include/migration/vmstate.h

index 2e5a97dec4edac7fc212fd36e9ee2045a031e512..9a65522da1904cd8237e02b1a561827281ad3059 100644 (file)
@@ -754,9 +754,6 @@ extern const VMStateInfo vmstate_info_bitmap;
 #define VMSTATE_UINT32_SUB_ARRAY(_f, _s, _start, _num)                \
     VMSTATE_SUB_ARRAY(_f, _s, _start, _num, 0, vmstate_info_uint32, uint32_t)
 
-#define VMSTATE_UINT32_ARRAY(_f, _s, _n)                              \
-    VMSTATE_UINT32_ARRAY_V(_f, _s, _n, 0)
-
 #define VMSTATE_INT64_ARRAY_V(_f, _s, _n, _v)                         \
     VMSTATE_ARRAY(_f, _s, _n, _v, vmstate_info_int64, int64_t)