spapr: Drop spapr_delete_vcpu() unused argument

The 'sc' argument is unused. Drop it.

Signed-off-by: Greg Kurz <groug@kaod.org>
Message-Id: <160279671929.1808373.10333672533575251075.stgit@bahia.lan>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
Greg Kurz 2020-10-15 23:18:39 +02:00 committed by David Gibson
parent f1023d21e8
commit 96598cdb14
1 changed files with 3 additions and 3 deletions

View File

@ -212,7 +212,7 @@ static void spapr_cpu_core_reset_handler(void *opaque)
spapr_cpu_core_reset(opaque);
}
static void spapr_delete_vcpu(PowerPCCPU *cpu, SpaprCpuCore *sc)
static void spapr_delete_vcpu(PowerPCCPU *cpu)
{
SpaprCpuState *spapr_cpu = spapr_cpu_state(cpu);
@ -233,7 +233,7 @@ static void spapr_cpu_core_unrealize(DeviceState *dev)
spapr_unrealize_vcpu(sc->threads[i], sc);
}
for (i = 0; i < cc->nr_threads; i++) {
spapr_delete_vcpu(sc->threads[i], sc);
spapr_delete_vcpu(sc->threads[i]);
}
g_free(sc->threads);
}
@ -345,7 +345,7 @@ err_unrealize:
}
err:
while (--i >= 0) {
spapr_delete_vcpu(sc->threads[i], sc);
spapr_delete_vcpu(sc->threads[i]);
}
g_free(sc->threads);
}