[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [5883] hw/ppc4xx_pci.c: kill two warnings
From: |
Aurelien Jarno |
Subject: |
[Qemu-devel] [5883] hw/ppc4xx_pci.c: kill two warnings |
Date: |
Fri, 05 Dec 2008 16:05:34 +0000 |
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 <address@hidden>
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);
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Qemu-devel] [5883] hw/ppc4xx_pci.c: kill two warnings,
Aurelien Jarno <=