From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58842) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wwqst-0001wW-PI for qemu-devel@nongnu.org; Tue, 17 Jun 2014 06:45:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Wwqsn-0001wM-HU for qemu-devel@nongnu.org; Tue, 17 Jun 2014 06:44:59 -0400 Received: from mx1.redhat.com ([209.132.183.28]:28859) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wwqsn-0001wF-8Y for qemu-devel@nongnu.org; Tue, 17 Jun 2014 06:44:53 -0400 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s5HAiqXC009469 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Tue, 17 Jun 2014 06:44:52 -0400 Date: Tue, 17 Jun 2014 11:44:48 +0100 From: "Dr. David Alan Gilbert" Message-ID: <20140617104447.GF2503@work-vm> References: <1402912703-28195-1-git-send-email-quintela@redhat.com> <1402912703-28195-2-git-send-email-quintela@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1402912703-28195-2-git-send-email-quintela@redhat.com> Subject: Re: [Qemu-devel] [PATCH 01/27] migration: Remove unneeded minimum_version_id_old List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Juan Quintela Cc: qemu-devel@nongnu.org * Juan Quintela (quintela@redhat.com) wrote: > Once there, make checkpatch happy. > > Signed-off-by: Juan Quintela Reviewed-by: Dr. David Alan Gilbert > --- > hw/usb/hcd-ohci.c | 7 ++----- > 1 file changed, 2 insertions(+), 5 deletions(-) > > diff --git a/hw/usb/hcd-ohci.c b/hw/usb/hcd-ohci.c > index cd87074..cace945 100644 > --- a/hw/usb/hcd-ohci.c > +++ b/hw/usb/hcd-ohci.c > @@ -1988,8 +1988,7 @@ static const VMStateDescription vmstate_ohci_state_port = { > .name = "ohci-core/port", > .version_id = 1, > .minimum_version_id = 1, > - .minimum_version_id_old = 1, > - .fields = (VMStateField []) { > + .fields = (VMStateField[]) { > VMSTATE_UINT32(ctrl, OHCIPort), > VMSTATE_END_OF_LIST() > }, > @@ -2015,9 +2014,8 @@ static const VMStateDescription vmstate_ohci_eof_timer = { > .name = "ohci-core/eof-timer", > .version_id = 1, > .minimum_version_id = 1, > - .minimum_version_id_old = 1, > .pre_load = ohci_eof_timer_pre_load, > - .fields = (VMStateField []) { > + .fields = (VMStateField[]) { > VMSTATE_TIMER(eof_timer, OHCIState), > VMSTATE_END_OF_LIST() > }, > @@ -2078,7 +2076,6 @@ static const VMStateDescription vmstate_ohci = { > .name = "ohci", > .version_id = 1, > .minimum_version_id = 1, > - .minimum_version_id_old = 1, > .fields = (VMStateField[]) { > VMSTATE_PCI_DEVICE(parent_obj, OHCIPCIState), > VMSTATE_STRUCT(state, OHCIPCIState, 1, vmstate_ohci_state, OHCIState), > -- > 1.9.3 > > -- Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK