summary refs log tree commit diff stats
path: root/hw/vmport.c
diff options
context:
space:
mode:
Diffstat (limited to 'hw/vmport.c')
-rw-r--r--hw/vmport.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/hw/vmport.c b/hw/vmport.c
index a2c45e1950..9373be9775 100644
--- a/hw/vmport.c
+++ b/hw/vmport.c
@@ -159,8 +159,9 @@ static TypeInfo vmport_info = {
     .class_init    = vmport_class_initfn,
 };
 
-static void vmport_dev_register(void)
+static void vmport_register_types(void)
 {
     type_register_static(&vmport_info);
 }
-device_init(vmport_dev_register)
+
+type_init(vmport_register_types)