]> Git Repo - qemu.git/blobdiff - include/hw/i2c/arm_sbcon_i2c.h
Move QOM typedefs and add missing includes
[qemu.git] / include / hw / i2c / arm_sbcon_i2c.h
index 5d96507ab6ef309494cb2c8fce063a0a3e37db67..ca548679642678c8b14d615a82bb16d1962cf60d 100644 (file)
 
 #include "hw/sysbus.h"
 #include "hw/i2c/bitbang_i2c.h"
+#include "qom/object.h"
 
 #define TYPE_VERSATILE_I2C "versatile_i2c"
 #define TYPE_ARM_SBCON_I2C TYPE_VERSATILE_I2C
 
+typedef struct ArmSbconI2CState ArmSbconI2CState;
 #define ARM_SBCON_I2C(obj) \
     OBJECT_CHECK(ArmSbconI2CState, (obj), TYPE_ARM_SBCON_I2C)
 
-typedef struct ArmSbconI2CState {
+struct ArmSbconI2CState {
     /*< private >*/
     SysBusDevice parent_obj;
     /*< public >*/
@@ -30,6 +32,6 @@ typedef struct ArmSbconI2CState {
     bitbang_i2c_interface bitbang;
     int out;
     int in;
-} ArmSbconI2CState;
+};
 
 #endif /* HW_I2C_ARM_SBCON_H */
This page took 0.024338 seconds and 4 git commands to generate.