]> git.ipfire.org Git - thirdparty/qemu.git/blobdiff - hw/rtc/m41t80.c
Move QOM typedefs and add missing includes
[thirdparty/qemu.git] / hw / rtc / m41t80.c
index 914ecac8f4db418633d6daf92608cb50f6b89052..31445e9691799a8fb31b93133ffc66cf961d74e2 100644 (file)
 #include "qemu/timer.h"
 #include "qemu/bcd.h"
 #include "hw/i2c/i2c.h"
+#include "qom/object.h"
 
 #define TYPE_M41T80 "m41t80"
+typedef struct M41t80State M41t80State;
 #define M41T80(obj) OBJECT_CHECK(M41t80State, (obj), TYPE_M41T80)
 
-typedef struct M41t80State {
+struct M41t80State {
     I2CSlave parent_obj;
     int8_t addr;
-} M41t80State;
+};
 
 static void m41t80_realize(DeviceState *dev, Error **errp)
 {