From mboxrd@z Thu Jan 1 00:00:00 1970 From: Guenter Roeck Subject: [PATCH v2 42/47] x86: lguest: Register with kernel poweroff handler Date: Mon, 20 Oct 2014 21:12:58 -0700 Message-ID: <1413864783-3271-43-git-send-email-linux@roeck-us.net> References: <1413864783-3271-1-git-send-email-linux@roeck-us.net> Return-path: Received: from bh-25.webhostbox.net ([208.91.199.152]:33993 "EHLO bh-25.webhostbox.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754617AbaJUEO5 (ORCPT ); Tue, 21 Oct 2014 00:14:57 -0400 Received: from mailnull by bh-25.webhostbox.net with sa-checked (Exim 4.82) (envelope-from ) id 1XgQqW-002fAw-KQ for linux-pm@vger.kernel.org; Tue, 21 Oct 2014 04:14:56 +0000 In-Reply-To: <1413864783-3271-1-git-send-email-linux@roeck-us.net> Sender: linux-pm-owner@vger.kernel.org List-Id: linux-pm@vger.kernel.org To: linux-kernel@vger.kernel.org Cc: linux-pm@vger.kernel.org, Guenter Roeck , Rusty Russell , Thomas Gleixner , Ingo Molnar , "H. Peter Anvin" , lguest@lists.ozlabs.org, x86@kernel.org Register with kernel poweroff handler instead of setting pm_power_off directly. Cc: Rusty Russell Cc: Thomas Gleixner Cc: Ingo Molnar Cc: H. Peter Anvin Signed-off-by: Guenter Roeck --- - Use define to specify poweroff handler priority arch/x86/lguest/boot.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arch/x86/lguest/boot.c b/arch/x86/lguest/boot.c index aae9413..913a95e 100644 --- a/arch/x86/lguest/boot.c +++ b/arch/x86/lguest/boot.c @@ -1441,7 +1441,8 @@ __init void lguest_init(void) * the Guest routine to power off, and the reboot hook to our restart * routine. */ - pm_power_off = lguest_power_off; + register_power_off_handler_simple(lguest_power_off, + POWEROFF_PRIORITY_DEFAULT); machine_ops.restart = lguest_restart; /* -- 1.9.1