From patchwork Wed Oct 7 14:56:26 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Juan Quintela X-Patchwork-Id: 35303 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 AB8FEB7B9A for ; Thu, 8 Oct 2009 02:19:54 +1100 (EST) Received: from localhost ([127.0.0.1]:60230 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MvYIx-0004rY-Fh for incoming@patchwork.ozlabs.org; Wed, 07 Oct 2009 11:19:51 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MvXwz-00037v-7z for qemu-devel@nongnu.org; Wed, 07 Oct 2009 10:57:09 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MvXws-0002xh-8B for qemu-devel@nongnu.org; Wed, 07 Oct 2009 10:57:06 -0400 Received: from [199.232.76.173] (port=55164 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MvXwr-0002xY-TY for qemu-devel@nongnu.org; Wed, 07 Oct 2009 10:57:01 -0400 Received: from mx1.redhat.com ([209.132.183.28]:2033) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MvXwr-0003fv-D0 for qemu-devel@nongnu.org; Wed, 07 Oct 2009 10:57:01 -0400 Received: from int-mx08.intmail.prod.int.phx2.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n97Ev0NX010733 for ; Wed, 7 Oct 2009 10:57:00 -0400 Received: from localhost.localdomain (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by int-mx08.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id n97Eulnv016943; Wed, 7 Oct 2009 10:56:59 -0400 From: Juan Quintela To: qemu-devel@nongnu.org Date: Wed, 7 Oct 2009 16:56:26 +0200 Message-Id: In-Reply-To: References: In-Reply-To: References: X-Scanned-By: MIMEDefang 2.67 on 10.5.11.21 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Qemu-devel] [PATCH 09/12] ide: 'secondary' field is only used by cmd646 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/ide/pci.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/ide/pci.h b/hw/ide/pci.h index 690d057..9377503 100644 --- a/hw/ide/pci.h +++ b/hw/ide/pci.h @@ -7,7 +7,7 @@ typedef struct PCIIDEState { PCIDevice dev; IDEBus bus[2]; BMDMAState bmdma[2]; - uint32_t secondary; + uint32_t secondary; /* used only for cmd646 */ } PCIIDEState; void bmdma_cmd_writeb(void *opaque, uint32_t addr, uint32_t val);