summaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/syscall_misc.C10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/lib/syscall_misc.C b/src/lib/syscall_misc.C
index 22ead7a9a..fd8d76b62 100644
--- a/src/lib/syscall_misc.C
+++ b/src/lib/syscall_misc.C
@@ -5,7 +5,7 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
-/* Contributors Listed Below - COPYRIGHT 2011,2015 */
+/* Contributors Listed Below - COPYRIGHT 2011,2017 */
/* [+] International Business Machines Corp. */
/* */
/* */
@@ -34,14 +34,16 @@ void shutdown(uint64_t i_status,
uint64_t i_payload_base,
uint64_t i_payload_entry,
uint64_t i_payload_data,
- uint64_t i_masterHBInstance)
+ uint64_t i_masterHBInstance,
+ uint32_t i_error_data)
{
- _syscall5(MISC_SHUTDOWN,
+ _syscall6(MISC_SHUTDOWN,
reinterpret_cast<void*>(i_status),
reinterpret_cast<void*>(i_payload_base),
reinterpret_cast<void*>(i_payload_entry),
reinterpret_cast<void*>(i_payload_data),
- reinterpret_cast<void*>(i_masterHBInstance));
+ reinterpret_cast<void*>(i_masterHBInstance),
+ reinterpret_cast<void*>(i_error_data));
}
ProcessorCoreType cpu_core_type()
OpenPOWER on IntegriCloud