diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2009-10-21 15:25:27 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-27 12:28:38 -0500 |
commit | 93db66850d99fd9885edeff6af5679be51e1c610 (patch) | |
tree | 42089679a4a14a24105615425485bcf8434b081a /hw/ne2000.h | |
parent | ed16ab5afae7f5b1be58764d0e1eae20ce48d9ad (diff) | |
download | qemu-93db66850d99fd9885edeff6af5679be51e1c610.tar.gz qemu-93db66850d99fd9885edeff6af5679be51e1c610.tar.bz2 qemu-93db66850d99fd9885edeff6af5679be51e1c610.zip |
ne2k_isa: use qdev properties for configuration.
Signed-off-by: Gerd Hoffmann <kraxel@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 92a2ddb41f..78422465c4 100644 --- a/hw/ne2000.h +++ b/hw/ne2000.h @@ -23,7 +23,7 @@ typedef struct NE2000State { uint8_t mult[8]; /* multicast mask array */ qemu_irq irq; VLANClientState *vc; - uint8_t macaddr[6]; + NICConf c; uint8_t mem[NE2000_MEM_SIZE]; } NE2000State; |