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 /target-ppc | |
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 'target-ppc')
-rw-r--r-- | target-ppc/machine.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/target-ppc/machine.c b/target-ppc/machine.c index 8b82005a10..c15776f690 100644 --- a/target-ppc/machine.c +++ b/target-ppc/machine.c @@ -1,17 +1,6 @@ #include "hw/hw.h" #include "hw/boards.h" -void register_machines(void) -{ - qemu_register_machine(&heathrow_machine); - qemu_register_machine(&core99_machine); - qemu_register_machine(&prep_machine); - qemu_register_machine(&ref405ep_machine); - qemu_register_machine(&taihu_machine); - qemu_register_machine(&bamboo_machine); - qemu_register_machine(&mpc8544ds_machine); -} - void cpu_save(QEMUFile *f, void *opaque) { CPUState *env = (CPUState *)opaque; |