qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 18/26] We need PCINE2000State for save/load function


From: Juan Quintela
Subject: [Qemu-devel] [PATCH 18/26] We need PCINE2000State for save/load functions
Date: Mon, 24 Aug 2009 18:42:52 +0200

Signed-off-by: Juan Quintela <address@hidden>
---
 hw/ne2000.c |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/hw/ne2000.c b/hw/ne2000.c
index e5d8914..1c47c84 100644
--- a/hw/ne2000.c
+++ b/hw/ne2000.c
@@ -147,6 +147,11 @@ typedef struct NE2000State {
     uint8_t mem[NE2000_MEM_SIZE];
 } NE2000State;

+typedef struct PCINE2000State {
+    PCIDevice dev;
+    NE2000State ne2000;
+} PCINE2000State;
+
 static void ne2000_reset(NE2000State *s)
 {
     int i;
@@ -771,11 +776,6 @@ void isa_ne2000_init(int base, qemu_irq irq, NICInfo *nd)
 /***********************************************************/
 /* PCI NE2000 definitions */

-typedef struct PCINE2000State {
-    PCIDevice dev;
-    NE2000State ne2000;
-} PCINE2000State;
-
 static void ne2000_map(PCIDevice *pci_dev, int region_num,
                        uint32_t addr, uint32_t size, int type)
 {
-- 
1.6.2.5





reply via email to

[Prev in Thread] Current Thread [Next in Thread]