spapr: drop duplicate variable in spapr_core_plug()
A variable is already defined at the begining of the function to hold a pointer to the CPU core object: sPAPRCPUCore *core = SPAPR_CPU_CORE(OBJECT(dev)); No need to define it again in the pre-2.10 compatibility code snipplet. Signed-off-by: Greg Kurz <groug@kaod.org> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
parent
ebca5e6d5e
commit
bc8772835f
@ -3357,9 +3357,7 @@ static void spapr_core_plug(HotplugHandler *hotplug_dev, DeviceState *dev,
|
|||||||
int i;
|
int i;
|
||||||
|
|
||||||
for (i = 0; i < cc->nr_threads; i++) {
|
for (i = 0; i < cc->nr_threads; i++) {
|
||||||
sPAPRCPUCore *sc = SPAPR_CPU_CORE(dev);
|
cs = CPU(core->threads[i]);
|
||||||
|
|
||||||
cs = CPU(sc->threads[i]);
|
|
||||||
pre_2_10_vmstate_unregister_dummy_icp(cs->cpu_index);
|
pre_2_10_vmstate_unregister_dummy_icp(cs->cpu_index);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user