[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH for-9.2 03/10] hw: Remove device_class_set_parent_reset()
From: |
Peter Maydell |
Subject: |
[PATCH for-9.2 03/10] hw: Remove device_class_set_parent_reset() |
Date: |
Tue, 13 Aug 2024 17:52:43 +0100 |
There are no callers of device_class_set_parent_reset() left in the tree,
as they've all been converted to use three-phase reset and the
corresponding resettable_class_set_parent_phases() function.
Remove device_class_set_parent_reset().
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
---
include/hw/qdev-core.h | 16 ----------------
hw/core/qdev.c | 8 --------
2 files changed, 24 deletions(-)
diff --git a/include/hw/qdev-core.h b/include/hw/qdev-core.h
index 77bfcbdf732..18c7845ce9b 100644
--- a/include/hw/qdev-core.h
+++ b/include/hw/qdev-core.h
@@ -937,22 +937,6 @@ char *qdev_get_own_fw_dev_path_from_handler(BusState *bus,
DeviceState *dev);
*/
void device_class_set_props(DeviceClass *dc, Property *props);
-/**
- * device_class_set_parent_reset() - legacy set device reset handlers
- * @dc: device class
- * @dev_reset: function pointer to reset handler
- * @parent_reset: function pointer to parents reset handler
- *
- * Modern code should use the ResettableClass interface to
- * implement a multi-phase reset instead.
- *
- * TODO: remove the function when DeviceClass's reset method
- * is not used anymore.
- */
-void device_class_set_parent_reset(DeviceClass *dc,
- DeviceReset dev_reset,
- DeviceReset *parent_reset);
-
/**
* device_class_set_parent_realize() - set up for chaining realize fns
* @dc: The device class
diff --git a/hw/core/qdev.c b/hw/core/qdev.c
index f3a996f57de..cf811580621 100644
--- a/hw/core/qdev.c
+++ b/hw/core/qdev.c
@@ -844,14 +844,6 @@ static void device_class_init(ObjectClass *class, void
*data)
offsetof(DeviceState, parent_bus), NULL, 0);
}
-void device_class_set_parent_reset(DeviceClass *dc,
- DeviceReset dev_reset,
- DeviceReset *parent_reset)
-{
- *parent_reset = dc->reset;
- dc->reset = dev_reset;
-}
-
void device_class_set_parent_realize(DeviceClass *dc,
DeviceRealize dev_realize,
DeviceRealize *parent_realize)
--
2.34.1
- Re: [PATCH for-9.2 01/10] hw/s390/virtio-ccw: Convert to three-phase reset, (continued)
- [PATCH for-9.2 02/10] target/s390: Convert CPU to Resettable interface, Peter Maydell, 2024/08/13
- [PATCH for-9.2 03/10] hw: Remove device_class_set_parent_reset(),
Peter Maydell <=
- [PATCH for-9.2 04/10] target/alpha, hppa: Remove unused parent_reset fields, Peter Maydell, 2024/08/13
- [PATCH for-9.2 05/10] hw/dma/xilinx_axidma: Use semicolon at end of statement, not comma, Peter Maydell, 2024/08/13
- [PATCH for-9.2 09/10] hw: Rename DeviceClass::reset field to legacy_reset, Peter Maydell, 2024/08/13