From: Peter Maydell Date: Fri, 30 Apr 2021 22:23:48 +0000 (+0100) Subject: hw/sd/omap_mmc: Use device_cold_reset() instead of device_legacy_reset() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=f16a3bf81b8b01c53144167f6cc12fb126028972;p=qemu.git hw/sd/omap_mmc: Use device_cold_reset() instead of device_legacy_reset() The omap_mmc_reset() function resets its SD card via device_legacy_reset(). We know that the SD card 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 Reviewed-by: Philippe Mathieu-Daudé Message-id: 20210430222348.8514-1-peter.maydell@linaro.org --- diff --git a/hw/sd/omap_mmc.c b/hw/sd/omap_mmc.c index 1f946908fe..b67def6381 100644 --- a/hw/sd/omap_mmc.c +++ b/hw/sd/omap_mmc.c @@ -318,7 +318,7 @@ void omap_mmc_reset(struct omap_mmc_s *host) * into any bus, and we must reset it manually. When omap_mmc is * QOMified this must move into the QOM reset function. */ - device_legacy_reset(DEVICE(host->card)); + device_cold_reset(DEVICE(host->card)); } static uint64_t omap_mmc_read(void *opaque, hwaddr offset,