aboutsummaryrefslogtreecommitdiff
path: root/include/hw/net/lance.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/hw/net/lance.h')
-rw-r--r--include/hw/net/lance.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/hw/net/lance.h b/include/hw/net/lance.h
index 0357f5f..fe459ff 100644
--- a/include/hw/net/lance.h
+++ b/include/hw/net/lance.h
@@ -32,15 +32,17 @@
#include "net/net.h"
#include "hw/net/pcnet.h"
#include "hw/sysbus.h"
+#include "qom/object.h"
#define TYPE_LANCE "lance"
+typedef struct SysBusPCNetState SysBusPCNetState;
#define SYSBUS_PCNET(obj) \
OBJECT_CHECK(SysBusPCNetState, (obj), TYPE_LANCE)
-typedef struct {
+struct SysBusPCNetState {
SysBusDevice parent_obj;
PCNetState state;
-} SysBusPCNetState;
+};
#endif