From: Cédric Le Goater Date: Thu, 19 Dec 2019 18:11:43 +0000 (+0100) Subject: ppc/pnv: Modify the powerdown notifier to get the PowerNV machine X-Git-Tag: v5.0.0-rc0~152^2~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f06e3705e83c9df5a8dc61bd72b4ccf2794f076;p=thirdparty%2Fqemu.git ppc/pnv: Modify the powerdown notifier to get the PowerNV machine Use container_of() instead of qdev_get_machine() Signed-off-by: Cédric Le Goater Reviewed-by: Greg Kurz Signed-off-by: Cédric Le Goater Message-Id: <20191219181155.32530-2-clg@kaod.org> Signed-off-by: David Gibson --- diff --git a/hw/ppc/pnv.c b/hw/ppc/pnv.c index f77e7ca84ed..855254f2826 100644 --- a/hw/ppc/pnv.c +++ b/hw/ppc/pnv.c @@ -561,7 +561,7 @@ static void *pnv_dt_create(MachineState *machine) static void pnv_powerdown_notify(Notifier *n, void *opaque) { - PnvMachineState *pnv = PNV_MACHINE(qdev_get_machine()); + PnvMachineState *pnv = container_of(n, PnvMachineState, powerdown_notifier); if (pnv->bmc) { pnv_bmc_powerdown(pnv->bmc);