diff options
author | Mark McLoughlin <markmc@redhat.com> | 2009-11-25 18:49:14 +0000 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-12-03 09:41:31 -0600 |
commit | 1c2045b549df75a2869e408d4fdec6738c72da81 (patch) | |
tree | 6eb42b6385a5b5443f9e9b5417eadf19e2557c8e /hw/ne2000.h | |
parent | 1673ad513edcfc0a8b8a38116dd63d5bc83020ff (diff) | |
download | qemu-1c2045b549df75a2869e408d4fdec6738c72da81.tar.gz qemu-1c2045b549df75a2869e408d4fdec6738c72da81.tar.bz2 qemu-1c2045b549df75a2869e408d4fdec6738c72da81.zip |
net: convert ne2000 to NICState
Signed-off-by: Mark McLoughlin <markmc@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/ne2000.h')
-rw-r--r-- | hw/ne2000.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ne2000.h b/hw/ne2000.h index 2bbce71e6f..54fdfca133 100644 --- a/hw/ne2000.h +++ b/hw/ne2000.h @@ -22,7 +22,7 @@ typedef struct NE2000State { uint8_t curpag; uint8_t mult[8]; /* multicast mask array */ qemu_irq irq; - VLANClientState *vc; + NICState *nic; NICConf c; uint8_t mem[NE2000_MEM_SIZE]; } NE2000State; |