diff options
author | Joel Stanley <joel@jms.id.au> | 2015-01-30 17:13:08 +1030 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2015-02-04 13:08:25 +1100 |
commit | 7f43e71e8c538356efd5b33a183e6d9ace4739a5 (patch) | |
tree | ced1bcd20c5d291aef5d7cdcfb85d9ad74b40a50 /arch/powerpc/include/asm | |
parent | a604c96eb07b2b65734a8aa0e9e8c1bfc435ee4f (diff) |
powerpc/powernv: Add OPAL soft-poweroff routine
Register a notifier for a OPAL message indicating that the machine
should prepare itself for a graceful power off.
OPAL will tell us if the power off is a reboot or shutdown, but for now
we perform the same orderly_poweroff action.
Signed-off-by: Joel Stanley <joel@jms.id.au>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/include/asm')
-rw-r--r-- | arch/powerpc/include/asm/opal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/include/asm/opal.h b/arch/powerpc/include/asm/opal.h index 2baf8a5925c..9ee0a30a02c 100644 --- a/arch/powerpc/include/asm/opal.h +++ b/arch/powerpc/include/asm/opal.h @@ -304,7 +304,7 @@ enum OpalMessageType { */ OPAL_MSG_MEM_ERR, OPAL_MSG_EPOW, - OPAL_MSG_SHUTDOWN, + OPAL_MSG_SHUTDOWN, /* params[0] = 1 reboot, 0 shutdown */ OPAL_MSG_HMI_EVT, OPAL_MSG_TYPE_MAX, }; |