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/an5206.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'hw/an5206.c') diff --git a/hw/an5206.c b/hw/an5206.c index 5cdda14..d417d92 100644 --- a/hw/an5206.c +++ b/hw/an5206.c @@ -84,8 +84,15 @@ static void an5206_init(ram_addr_t ram_size, env->pc = entry; } -QEMUMachine an5206_machine = { +static QEMUMachine an5206_machine = { .name = "an5206", .desc = "Arnewsh 5206", .init = an5206_init, }; + +static void an5206_machine_init(void) +{ + qemu_register_machine(&an5206_machine); +} + +machine_init(an5206_machine_init); -- cgit v1.1