summaryrefslogtreecommitdiffstats
path: root/target-openrisc
diff options
context:
space:
mode:
authorAndreas Färber <afaerber@suse.de>2014-03-04 03:17:10 +0100
committerAndreas Färber <afaerber@suse.de>2014-03-13 19:20:46 +0100
commit9262685b818512215f0829f0dc95c2363898a1ad (patch)
treea45bd8ce1dbcb4eaecbe6ad67af4f91d49c94f28 /target-openrisc
parent1590bbcb02921dfe8e3cf66e3a3aafd31193babf (diff)
downloadhqemu-9262685b818512215f0829f0dc95c2363898a1ad.zip
hqemu-9262685b818512215f0829f0dc95c2363898a1ad.tar.gz
cpu: Factor out cpu_generic_init()
All targets using it gain the ability to set -cpu name,key=value,... options via the default TYPE_CPU CPUClass::parse_features() implementation. Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'target-openrisc')
-rw-r--r--target-openrisc/cpu.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/target-openrisc/cpu.c b/target-openrisc/cpu.c
index 83fed5e..0b2ffb2 100644
--- a/target-openrisc/cpu.c
+++ b/target-openrisc/cpu.c
@@ -208,18 +208,7 @@ static void openrisc_cpu_register_types(void)
OpenRISCCPU *cpu_openrisc_init(const char *cpu_model)
{
- OpenRISCCPU *cpu;
- ObjectClass *oc;
-
- oc = openrisc_cpu_class_by_name(cpu_model);
- if (oc == NULL) {
- return NULL;
- }
- cpu = OPENRISC_CPU(object_new(object_class_get_name(oc)));
-
- object_property_set_bool(OBJECT(cpu), true, "realized", NULL);
-
- return cpu;
+ return OPENRISC_CPU(cpu_generic_init(TYPE_OPENRISC_CPU, cpu_model));
}
/* Sort alphabetically by type name, except for "any". */
OpenPOWER on IntegriCloud