From: Peter Maydell Date: Mon, 3 May 2021 15:18:47 +0000 (+0100) Subject: hw/intc/spapr_xive: Use device_cold_reset() instead of device_legacy_reset() X-Git-Tag: v6.1.0-rc0~139^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b2df46fd80d9cebc8d9cd3690ec425273c55b434;p=thirdparty%2Fqemu.git hw/intc/spapr_xive: Use device_cold_reset() instead of device_legacy_reset() The h_int_reset() function resets the XIVE interrupt controller via device_legacy_reset(). We know that the interrupt controller does not have a qbus of its own, so the new device_cold_reset() function (which resets both the device and its child buses) is equivalent here to device_legacy_reset() and we can just switch to the new API. Signed-off-by: Peter Maydell Message-Id: <20210503151849.8766-2-peter.maydell@linaro.org> Signed-off-by: David Gibson --- diff --git a/hw/intc/spapr_xive.c b/hw/intc/spapr_xive.c index 801bc193416..89cfa018f59 100644 --- a/hw/intc/spapr_xive.c +++ b/hw/intc/spapr_xive.c @@ -1798,7 +1798,7 @@ static target_ulong h_int_reset(PowerPCCPU *cpu, return H_PARAMETER; } - device_legacy_reset(DEVICE(xive)); + device_cold_reset(DEVICE(xive)); if (spapr_xive_in_kernel(xive)) { Error *local_err = NULL;