From f80f9ec9a63bb2200d614feb658a77b78f9a4bba Mon Sep 17 00:00:00 2001 From: Anthony Liguori Date: Wed, 20 May 2009 18:38:09 -0500 Subject: Convert machine registration to use module init functions This cleans up quite a lot of #ifdefs, extern variables, and other ugliness. Signed-off-by: Anthony Liguori --- hw/mips_mipssim.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'hw/mips_mipssim.c') diff --git a/hw/mips_mipssim.c b/hw/mips_mipssim.c index b3f190e21a..e4414b42e0 100644 --- a/hw/mips_mipssim.c +++ b/hw/mips_mipssim.c @@ -178,8 +178,15 @@ mips_mipssim_init (ram_addr_t ram_size, mipsnet_init(0x4200, env->irq[2], &nd_table[0]); } -QEMUMachine mips_mipssim_machine = { +static QEMUMachine mips_mipssim_machine = { .name = "mipssim", .desc = "MIPS MIPSsim platform", .init = mips_mipssim_init, }; + +static void mips_mipssim_machine_init(void) +{ + qemu_register_machine(&mips_mipssim_machine); +} + +machine_init(mips_mipssim_machine_init); -- cgit v1.2.3