Skip to content

Commit

Permalink
hw/ppc/mac_newworld: QOMified mac99 machines
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Apfelbaum <[email protected]>
Reviewed-by: Paolo Bonzini <[email protected]>
Reviewed-by: Stefan Hajnoczi <[email protected]>
Reviewed-by: Alexander Graf <[email protected]>
Message-id: [email protected]
Signed-off-by: Peter Maydell <[email protected]>
  • Loading branch information
marcel-apf authored and pm215 committed Jan 8, 2015
1 parent de77a24 commit b1c2fb9
Showing 1 changed file with 19 additions and 10 deletions.
29 changes: 19 additions & 10 deletions hw/ppc/mac_newworld.c
Original file line number Diff line number Diff line change
Expand Up @@ -502,18 +502,27 @@ static int core99_kvm_type(const char *arg)
return 2;
}

static QEMUMachine core99_machine = {
.name = "mac99",
.desc = "Mac99 based PowerMAC",
.init = ppc_core99_init,
.max_cpus = MAX_CPUS,
.default_boot_order = "cd",
.kvm_type = core99_kvm_type,
static void core99_machine_class_init(ObjectClass *oc, void *data)
{
MachineClass *mc = MACHINE_CLASS(oc);

mc->name = "mac99";
mc->desc = "Mac99 based PowerMAC";
mc->init = ppc_core99_init;
mc->max_cpus = MAX_CPUS;
mc->default_boot_order = "cd";
mc->kvm_type = core99_kvm_type;
}

static const TypeInfo core99_machine_info = {
.name = "mac99-machine",
.parent = TYPE_MACHINE,
.class_init = core99_machine_class_init,
};

static void core99_machine_init(void)
static void mac_machine_register_types(void)
{
qemu_register_machine(&core99_machine);
type_register_static(&core99_machine_info);
}

machine_init(core99_machine_init);
type_init(mac_machine_register_types)

0 comments on commit b1c2fb9

Please sign in to comment.