qdev: move name+size into DeviceInfo (v2)
[qemu] / hw / twl92230.c
index 3a22692..9960acc 100644 (file)
@@ -892,6 +892,8 @@ static void twl92230_init(i2c_slave *i2c)
 }
 
 static I2CSlaveInfo twl92230_info = {
+    .qdev.name ="twl92230",
+    .qdev.size = sizeof(MenelausState),
     .init = twl92230_init,
     .event = menelaus_event,
     .recv = menelaus_rx,
@@ -900,7 +902,7 @@ static I2CSlaveInfo twl92230_info = {
 
 static void twl92230_register_devices(void)
 {
-    i2c_register_slave("twl92230", sizeof(MenelausState), &twl92230_info);
+    i2c_register_slave(&twl92230_info);
 }
 
 device_init(twl92230_register_devices)