diff options
author | Dan Crowell <dcrowell@us.ibm.com> | 2017-05-10 15:07:42 -0500 |
---|---|---|
committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2017-05-11 23:37:20 -0400 |
commit | 6d6cb5993693573a7e7c4e14701206a9dccc5949 (patch) | |
tree | d7ba3c29fc356b9484fc58afd3a83af51706fe08 /src/usr/isteps | |
parent | c5fd45bf6a48f00f1b6a0d6ba9357ebc232b7831 (diff) | |
download | talos-hostboot-6d6cb5993693573a7e7c4e14701206a9dccc5949.tar.gz talos-hostboot-6d6cb5993693573a7e7c4e14701206a9dccc5949.zip |
Disable special wakeup at the end of the boot
Fixed a typo where we were enabling instead of disabling wakeup
at the end of the boot.
Change-Id: I777e682fc2dc4bce31fa9d136a29712b6d9c929c
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/40349
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr/isteps')
-rw-r--r-- | src/usr/isteps/istep21/call_host_start_payload.C | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usr/isteps/istep21/call_host_start_payload.C b/src/usr/isteps/istep21/call_host_start_payload.C index 45873f1b0..82a4b35a1 100644 --- a/src/usr/isteps/istep21/call_host_start_payload.C +++ b/src/usr/isteps/istep21/call_host_start_payload.C @@ -539,7 +539,7 @@ errlHndl_t disableSpecialWakeup() FAPI_INVOKE_HWP( l_errl, p9_cpu_special_wakeup_core, l_fapi2_coreTarget, - SPCWKUP_ENABLE, + SPCWKUP_DISABLE, HOST); if( l_errl ) { |