diff options
| author | Peter Maydell <peter.maydell@linaro.org> | 2024-09-13 15:31:45 +0100 |
|---|---|---|
| committer | Peter Maydell <peter.maydell@linaro.org> | 2024-09-13 15:31:45 +0100 |
| commit | 1000872dde2fc089823df7394ca2c9690734091a (patch) | |
| tree | 9f12983d21efe0aea5d14b26313f5c716deb9cd4 /include/hw/qdev-core.h | |
| parent | e3d0814368d00e7985c31edf5d0cfce45972d4be (diff) | |
| download | focaccia-qemu-1000872dde2fc089823df7394ca2c9690734091a.tar.gz focaccia-qemu-1000872dde2fc089823df7394ca2c9690734091a.zip | |
hw: Rename DeviceClass::reset field to legacy_reset
Rename the DeviceClass::reset field to legacy_reset; this is helpful both in flagging up that it's best not used in new code and in making it easy to search for where it's being used still. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20240830145812.1967042-9-peter.maydell@linaro.org
Diffstat (limited to 'include/hw/qdev-core.h')
| -rw-r--r-- | include/hw/qdev-core.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/hw/qdev-core.h b/include/hw/qdev-core.h index ade85c31e0..aa97c34a4b 100644 --- a/include/hw/qdev-core.h +++ b/include/hw/qdev-core.h @@ -152,14 +152,14 @@ struct DeviceClass { /* callbacks */ /** - * @reset: deprecated device reset method pointer + * @legacy_reset: deprecated device reset method pointer * * Modern code should use the ResettableClass interface to * implement a multi-phase reset. * * TODO: remove once every reset callback is unused */ - DeviceReset reset; + DeviceReset legacy_reset; DeviceRealize realize; DeviceUnrealize unrealize; |