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/tosa.c | |
parent | f92f8afebe038a4eae9ad90a140c9529f94919a6 (diff) |
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/tosa.c')
-rw-r--r-- | hw/tosa.c | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -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, |