aboutsummaryrefslogtreecommitdiff
path: root/hw/input
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2022-12-16 15:55:27 +0000
committerPeter Maydell <peter.maydell@linaro.org>2022-12-16 15:55:32 +0000
commitdfa6ba6baeebe25e3299c050e20a5a6755888cbf (patch)
tree5af1484cc3a225d93b3fb48d1fc4d27d0afee3e3 /hw/input
parent8cadd251b0212adaa3fc6bb278bcb0800840ac18 (diff)
downloadqemu-dfa6ba6baeebe25e3299c050e20a5a6755888cbf.zip
qemu-dfa6ba6baeebe25e3299c050e20a5a6755888cbf.tar.gz
qemu-dfa6ba6baeebe25e3299c050e20a5a6755888cbf.tar.bz2
Replace use of qdev_reset_all() with device_cold_reset()
The legacy function qdev_reset_all() performs a recursive reset, starting from a qdev. However, it does not permit any of the devices in the tree to use three-phase reset, because device reset goes through the device_legacy_reset() function that only calls the single DeviceClass::reset method. Switch to using the device_cold_reset() function instead. This also performs a recursive reset, where first the children are reset and then finally the parent, but it uses the new (...in 2020...) Resettable mechanism, which supports both the old style single-reset method and also the new 3-phase reset handling. This commit changes the five remaining uses of this function. Commit created with: sed -i -e 's/qdev_reset_all/device_cold_reset/g' hw/i386/xen/xen_platform.c hw/input/adb.c hw/remote/vfio-user-obj.c hw/s390x/s390-virtio-ccw.c hw/usb/dev-uas.c Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/input')
-rw-r--r--hw/input/adb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/input/adb.c b/hw/input/adb.c
index 84331b9..214ae6f 100644
--- a/hw/input/adb.c
+++ b/hw/input/adb.c
@@ -43,7 +43,7 @@ static const char *adb_commands[] = {
static void adb_device_reset(ADBDevice *d)
{
- qdev_reset_all(DEVICE(d));
+ device_cold_reset(DEVICE(d));
}
static int do_adb_request(ADBBusState *s, uint8_t *obuf, const uint8_t *buf,