diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2009-05-20 18:38:09 -0500 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-05-21 08:47:55 -0500 |
commit | f80f9ec9a63bb2200d614feb658a77b78f9a4bba (patch) | |
tree | 59e22e0a617e392a65431b82256fb443aa6ad850 /hw/an5206.c | |
parent | f92f8afebe038a4eae9ad90a140c9529f94919a6 (diff) | |
download | qemu-f80f9ec9a63bb2200d614feb658a77b78f9a4bba.tar.gz qemu-f80f9ec9a63bb2200d614feb658a77b78f9a4bba.tar.bz2 qemu-f80f9ec9a63bb2200d614feb658a77b78f9a4bba.zip |
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 <aliguori@us.ibm.com>
Diffstat (limited to 'hw/an5206.c')
-rw-r--r-- | hw/an5206.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/hw/an5206.c b/hw/an5206.c index 5cdda14136..d417d923b9 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); |