From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36747) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZQ8nm-0007iR-B2 for qemu-devel@nongnu.org; Fri, 14 Aug 2015 02:49:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZQ8nj-0005hI-4r for qemu-devel@nongnu.org; Fri, 14 Aug 2015 02:49:18 -0400 Received: from mail-bn1bon0060.outbound.protection.outlook.com ([157.56.111.60]:18374 helo=na01-bn1-obe.outbound.protection.outlook.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZQ8ni-0005g7-VZ for qemu-devel@nongnu.org; Fri, 14 Aug 2015 02:49:15 -0400 From: Soren Brinkmann Date: Thu, 13 Aug 2015 23:16:27 -0700 Message-ID: <1439532987-16335-1-git-send-email-soren.brinkmann@xilinx.com> MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH QEMU] vmstate: Remove redefinition of VMSTATE_UINT32_ARRAY List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Juan Quintela , Amit Shah Cc: qemu-devel@nongnu.org, Soren Brinkmann The macro is defined twice in identical ways. Signed-off-by: Soren Brinkmann --- I have the feeling I'm missing a tiny one-letter difference or some ifdef, but I believe the mentioned macro is defined twice. S=C3=B6ren --- include/migration/vmstate.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/include/migration/vmstate.h b/include/migration/vmstate.h index 2e5a97dec4ed..9a65522da190 100644 --- a/include/migration/vmstate.h +++ b/include/migration/vmstate.h @@ -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) =20 -#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) =20 --=20 2.5.0.3.g52d66ab