From patchwork Wed Feb 29 11:32:11 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gerd Hoffmann X-Patchwork-Id: 143704 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 727BCB6EF3 for ; Wed, 29 Feb 2012 22:32:51 +1100 (EST) Received: from localhost ([::1]:45323 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S2hm2-0006o2-6X for incoming@patchwork.ozlabs.org; Wed, 29 Feb 2012 06:32:46 -0500 Received: from eggs.gnu.org ([208.118.235.92]:41138) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S2hlg-00069N-84 for qemu-devel@nongnu.org; Wed, 29 Feb 2012 06:32:29 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S2hlZ-0008Ay-JZ for qemu-devel@nongnu.org; Wed, 29 Feb 2012 06:32:23 -0500 Received: from mx1.redhat.com ([209.132.183.28]:7940) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S2hlZ-0008AZ-CC for qemu-devel@nongnu.org; Wed, 29 Feb 2012 06:32:17 -0500 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q1TBWFu5007772 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 29 Feb 2012 06:32:16 -0500 Received: from rincewind.home.kraxel.org (ovpn-116-25.ams2.redhat.com [10.36.116.25]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q1TBWFNh021233; Wed, 29 Feb 2012 06:32:15 -0500 Received: by rincewind.home.kraxel.org (Postfix, from userid 500) id 5DD3D40376; Wed, 29 Feb 2012 12:32:14 +0100 (CET) From: Gerd Hoffmann To: qemu-devel@nongnu.org Date: Wed, 29 Feb 2012 12:32:11 +0100 Message-Id: <1330515133-32759-2-git-send-email-kraxel@redhat.com> In-Reply-To: <1330515133-32759-1-git-send-email-kraxel@redhat.com> References: <1330515133-32759-1-git-send-email-kraxel@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.132.183.28 Cc: Gerd Hoffmann Subject: [Qemu-devel] [PATCH 1/3] i44fx: fix pci_hole64 parameter passing X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org --- hw/piix_pci.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/piix_pci.c b/hw/piix_pci.c index e0268fe..c2a3671 100644 --- a/hw/piix_pci.c +++ b/hw/piix_pci.c @@ -350,7 +350,7 @@ PCIBus *i440fx_init(PCII440FXState **pi440fx_state, int *piix3_devfn, b = i440fx_common_init("i440FX", pi440fx_state, piix3_devfn, isa_bus, pic, address_space_mem, address_space_io, ram_size, pci_hole_start, pci_hole_size, - pci_hole64_size, pci_hole64_size, + pci_hole64_start, pci_hole64_size, pci_memory, ram_memory); return b; }