summary refs log tree commit diff stats
path: root/hw/syborg.c
diff options
context:
space:
mode:
Diffstat (limited to 'hw/syborg.c')
-rw-r--r--hw/syborg.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/hw/syborg.c b/hw/syborg.c
index 99f9dbbdba..ae0ca67027 100644
--- a/hw/syborg.c
+++ b/hw/syborg.c
@@ -98,8 +98,15 @@ static void syborg_init(ram_addr_t ram_size,
     arm_load_kernel(env, &syborg_binfo);
 }
 
-QEMUMachine syborg_machine = {
+static QEMUMachine syborg_machine = {
     .name = "syborg",
     .desc = "Syborg (Symbian Virtual Platform)",
     .init = syborg_init,
 };
+
+static void syborg_machine_init(void)
+{
+    qemu_register_machine(&syborg_machine);
+}
+
+machine_init(syborg_machine_init);