From mboxrd@z Thu Jan 1 00:00:00 1970 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 From: Gerd Hoffmann 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> Subject: [Qemu-devel] [PATCH 1/3] i44fx: fix pci_hole64 parameter passing List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann --- 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; } -- 1.7.1