diff options
author | Andreas Färber <afaerber@suse.de> | 2013-07-02 18:26:11 +0200 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2013-10-07 11:48:47 +0200 |
commit | 51fb256ab5ebc3e1879eb1df9c828866a2ef8141 (patch) | |
tree | 85d136dd7e316ab158c3db2b45887f543bdedb4f /target-s390x/helper.c | |
parent | 30ba0ee52d1519b717089782ef1caf0480a01dc3 (diff) | |
download | qemu-51fb256ab5ebc3e1879eb1df9c828866a2ef8141.zip |
cpu: Drop cpu_model_str from CPU_COMMON
Since this is only read in cpu_copy() and linux-user has a global
cpu_model, drop the field from generic code.
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'target-s390x/helper.c')
-rw-r--r-- | target-s390x/helper.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/target-s390x/helper.c b/target-s390x/helper.c index 61abfd7d9e..da33b38009 100644 --- a/target-s390x/helper.c +++ b/target-s390x/helper.c @@ -73,11 +73,8 @@ void s390x_cpu_timer(void *opaque) S390CPU *cpu_s390x_init(const char *cpu_model) { S390CPU *cpu; - CPUS390XState *env; cpu = S390_CPU(object_new(TYPE_S390_CPU)); - env = &cpu->env; - env->cpu_model_str = cpu_model; object_property_set_bool(OBJECT(cpu), true, "realized", NULL); |