diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-04-08 11:45:31 +0200 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-04-10 09:09:34 +0200 |
commit | 5c338216f57a433d897f30b258063ea75319b597 (patch) | |
tree | 70d4bd820ed9a24210bad89b17b160b20404458e | |
parent | d39fdfff348fdf00173b7a58e935328a64db7d28 (diff) |
hw/misc/applesmc: Do not call DeviceReset from DeviceRealize
QDev core layer always call DeviceReset() after DeviceRealize(),
no need to do it manually. Remove the extra call.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Message-Id: <20240408095217.57239-2-philmd@linaro.org>
-rw-r--r-- | hw/misc/applesmc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/misc/applesmc.c b/hw/misc/applesmc.c index 72300d0cbc..8e65816da6 100644 --- a/hw/misc/applesmc.c +++ b/hw/misc/applesmc.c @@ -342,7 +342,6 @@ static void applesmc_isa_realize(DeviceState *dev, Error **errp) } QLIST_INIT(&s->data_def); - qdev_applesmc_isa_reset(dev); } static Property applesmc_isa_properties[] = { |