aboutsummaryrefslogtreecommitdiffstats
path: root/hw/r2d.c
diff options
context:
space:
mode:
Diffstat (limited to 'hw/r2d.c')
-rw-r--r--hw/r2d.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/hw/r2d.c b/hw/r2d.c
index 49bf9ac9e..5b69c4f5d 100644
--- a/hw/r2d.c
+++ b/hw/r2d.c
@@ -258,8 +258,15 @@ static void r2d_init(ram_addr_t ram_size,
}
}
-QEMUMachine r2d_machine = {
+static QEMUMachine r2d_machine = {
.name = "r2d",
.desc = "r2d-plus board",
.init = r2d_init,
};
+
+static void r2d_machine_init(void)
+{
+ qemu_register_machine(&r2d_machine);
+}
+
+machine_init(r2d_machine_init);