aboutsummaryrefslogtreecommitdiff
path: root/hw/net/tulip.c
diff options
context:
space:
mode:
authorEduardo Habkost <ehabkost@redhat.com>2020-08-25 15:20:11 -0400
committerEduardo Habkost <ehabkost@redhat.com>2020-08-27 14:04:54 -0400
commit57af4d7fbcd0e9cf28f35d9480c0831d5657d9f2 (patch)
tree33554bf0d6f3e4009454f2b8566750e26d02078a /hw/net/tulip.c
parent79f6cf7e5976886d24276afc1fd4a0039e8f5972 (diff)
downloadqemu-57af4d7fbcd0e9cf28f35d9480c0831d5657d9f2.zip
qemu-57af4d7fbcd0e9cf28f35d9480c0831d5657d9f2.tar.gz
qemu-57af4d7fbcd0e9cf28f35d9480c0831d5657d9f2.tar.bz2
tulip: Move TulipState typedef to header
Move typedef closer to the type check macros, to make it easier to convert the code to OBJECT_DEFINE_TYPE() in the future. Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Tested-By: Roman Bolshakov <r.bolshakov@yadro.com> Message-Id: <20200825192110.3528606-16-ehabkost@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'hw/net/tulip.c')
-rw-r--r--hw/net/tulip.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/net/tulip.c b/hw/net/tulip.c
index 4487fd6..ca69f7e 100644
--- a/hw/net/tulip.c
+++ b/hw/net/tulip.c
@@ -18,7 +18,7 @@
#include "trace.h"
#include "net/eth.h"
-typedef struct TULIPState {
+struct TULIPState {
PCIDevice dev;
MemoryRegion io;
MemoryRegion memory;
@@ -44,7 +44,7 @@ typedef struct TULIPState {
uint32_t rx_status;
uint8_t filter[16][6];
-} TULIPState;
+};
static const VMStateDescription vmstate_pci_tulip = {
.name = "tulip",