hw/sd/omap_mmc: Use device_cold_reset() instead of device_legacy_reset()
commitf16a3bf81b8b01c53144167f6cc12fb126028972
authorPeter Maydell <peter.maydell@linaro.org>
Fri, 30 Apr 2021 22:23:48 +0000 (30 23:23 +0100)
committerPeter Maydell <peter.maydell@linaro.org>
Mon, 10 May 2021 16:21:53 +0000 (10 17:21 +0100)
tree872b603ed3663f006d721b796f8994a5dcb5bb4a
parent5b2c8af89b82a671137a2765b09ad24d0653661c
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 <peter.maydell@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-id: 20210430222348.8514-1-peter.maydell@linaro.org
hw/sd/omap_mmc.c