mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 02:03:56 -06:00
Use DEFINE_MACHINE() to register all machines
Convert all machines to use DEFINE_MACHINE() instead of QEMUMachine automatically using a script. Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> [AF: Style cleanups, convert imx25_pdk machine] Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
parent
f309ae852c
commit
e264d29de2
57 changed files with 543 additions and 798 deletions
|
@ -50,16 +50,11 @@ static void mpc8544ds_init(MachineState *machine)
|
|||
}
|
||||
|
||||
|
||||
static QEMUMachine ppce500_machine = {
|
||||
.name = "mpc8544ds",
|
||||
.desc = "mpc8544ds",
|
||||
.init = mpc8544ds_init,
|
||||
.max_cpus = 15,
|
||||
};
|
||||
|
||||
static void ppce500_machine_init(void)
|
||||
static void ppce500_machine_init(MachineClass *mc)
|
||||
{
|
||||
qemu_register_machine(&ppce500_machine);
|
||||
mc->desc = "mpc8544ds";
|
||||
mc->init = mpc8544ds_init;
|
||||
mc->max_cpus = 15;
|
||||
}
|
||||
|
||||
machine_init(ppce500_machine_init);
|
||||
DEFINE_MACHINE("mpc8544ds", ppce500_machine_init)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue