aboutsummaryrefslogtreecommitdiff
path: root/hw/tosa.c
diff options
context:
space:
mode:
Diffstat (limited to 'hw/tosa.c')
-rw-r--r--hw/tosa.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/hw/tosa.c b/hw/tosa.c
index 24227d83d..a606156e9 100644
--- a/hw/tosa.c
+++ b/hw/tosa.c
@@ -238,12 +238,19 @@ static void tosa_init(ram_addr_t ram_size,
sl_bootparam_write(SL_PXA_PARAM_BASE);
}
-QEMUMachine tosapda_machine = {
+static QEMUMachine tosapda_machine = {
.name = "tosa",
.desc = "Tosa PDA (PXA255)",
.init = tosa_init,
};
+static void tosapda_machine_init(void)
+{
+ qemu_register_machine(&tosapda_machine);
+}
+
+machine_init(tosapda_machine_init);
+
static I2CSlaveInfo tosa_dac_info = {
.init = tosa_dac_init,
.event = tosa_dac_event,