From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1L8dBR-0002UY-Kd for qemu-devel@nongnu.org; Fri, 05 Dec 2008 11:05:37 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1L8dBQ-0002U5-8P for qemu-devel@nongnu.org; Fri, 05 Dec 2008 11:05:37 -0500 Received: from [199.232.76.173] (port=37005 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L8dBP-0002U1-Vb for qemu-devel@nongnu.org; Fri, 05 Dec 2008 11:05:36 -0500 Received: from savannah.gnu.org ([199.232.41.3]:44950 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1L8dBP-0000Jn-IX for qemu-devel@nongnu.org; Fri, 05 Dec 2008 11:05:35 -0500 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1L8dBO-0002af-Os for qemu-devel@nongnu.org; Fri, 05 Dec 2008 16:05:34 +0000 Received: from aurel32 by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1L8dBO-0002aa-0q for qemu-devel@nongnu.org; Fri, 05 Dec 2008 16:05:34 +0000 MIME-Version: 1.0 Errors-To: aurel32 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Aurelien Jarno Message-Id: Date: Fri, 05 Dec 2008 16:05:34 +0000 Subject: [Qemu-devel] [5883] hw/ppc4xx_pci.c: kill two warnings Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Revision: 5883 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5883 Author: aurel32 Date: 2008-12-05 16:05:32 +0000 (Fri, 05 Dec 2008) Log Message: ----------- hw/ppc4xx_pci.c: kill two warnings Signed-off-by: Aurelien Jarno Modified Paths: -------------- trunk/hw/ppc4xx_pci.c Modified: trunk/hw/ppc4xx_pci.c =================================================================== --- trunk/hw/ppc4xx_pci.c 2008-12-05 07:21:44 UTC (rev 5882) +++ trunk/hw/ppc4xx_pci.c 2008-12-05 16:05:32 UTC (rev 5883) @@ -314,7 +314,7 @@ PPC4xxPCIState *controller = opaque; int i; - pci_device_save(&controller->pci_dev, f); + pci_device_save(controller->pci_dev, f); for (i = 0; i < PPC4xx_PCI_NR_PMMS; i++) { qemu_put_be32s(f, &controller->pmm[i].la); @@ -337,7 +337,7 @@ if (version_id != 1) return -EINVAL; - pci_device_load(&controller->pci_dev, f); + pci_device_load(controller->pci_dev, f); for (i = 0; i < PPC4xx_PCI_NR_PMMS; i++) { qemu_get_be32s(f, &controller->pmm[i].la);