From patchwork Wed Dec 2 11:36:42 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Juan Quintela X-Patchwork-Id: 40001 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 751D0B7BE1 for ; Wed, 2 Dec 2009 23:25:35 +1100 (EST) Received: from localhost ([127.0.0.1]:34721 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NFoGy-0000qk-92 for incoming@patchwork.ozlabs.org; Wed, 02 Dec 2009 07:25:32 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NFnWi-0005vE-PS for qemu-devel@nongnu.org; Wed, 02 Dec 2009 06:37:45 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NFnWd-0005re-FL for qemu-devel@nongnu.org; Wed, 02 Dec 2009 06:37:42 -0500 Received: from [199.232.76.173] (port=50863 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NFnWb-0005rP-MQ for qemu-devel@nongnu.org; Wed, 02 Dec 2009 06:37:37 -0500 Received: from mx1.redhat.com ([209.132.183.28]:10482) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NFnWb-0002C3-5a for qemu-devel@nongnu.org; Wed, 02 Dec 2009 06:37:37 -0500 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id nB2Bba5h029604 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 2 Dec 2009 06:37:36 -0500 Received: from localhost.localdomain (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id nB2BbPrd004274; Wed, 2 Dec 2009 06:37:35 -0500 From: Juan Quintela To: qemu-devel@nongnu.org Date: Wed, 2 Dec 2009 12:36:42 +0100 Message-Id: In-Reply-To: References: In-Reply-To: References: X-Scanned-By: MIMEDefang 2.67 on 10.5.11.11 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Qemu-devel] [PATCH 08/12] vmstate: remove usused VMSTATE_STRUCT_ARRAY_SIZE_UINT8 X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Juan Quintela --- hw/hw.h | 10 ---------- 1 files changed, 0 insertions(+), 10 deletions(-) diff --git a/hw/hw.h b/hw/hw.h index 5994d86..41e13cc 100644 --- a/hw/hw.h +++ b/hw/hw.h @@ -475,16 +475,6 @@ extern const VMStateInfo vmstate_info_unused_buffer; .offset = vmstate_offset_array(_state, _field, _type, _num), \ } -#define VMSTATE_STRUCT_ARRAY_SIZE_UINT8(_field, _state, _field__num, _version, _vmsd, _type) { \ - .name = (stringify(_field)), \ - .num_offset = vmstate_offset_value(_state, _field_num, uint8_t), \ - .version_id = (_version), \ - .vmsd = &(_vmsd), \ - .size = sizeof(_type), \ - .flags = VMS_STRUCT|VMS_ARRAY, \ - .offset = vmstate_offset_array(_state, _field, _type, _num), \ -} - #define VMSTATE_STATIC_BUFFER(_field, _state, _version, _test, _start, _size) { \ .name = (stringify(_field)), \ .version_id = (_version), \