diff options
Diffstat (limited to 'src/usr/diag/prdf/common/prdfMain_common.C')
-rwxr-xr-x | src/usr/diag/prdf/common/prdfMain_common.C | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/usr/diag/prdf/common/prdfMain_common.C b/src/usr/diag/prdf/common/prdfMain_common.C index fd23cf4d1..09cfe2212 100755 --- a/src/usr/diag/prdf/common/prdfMain_common.C +++ b/src/usr/diag/prdf/common/prdfMain_common.C @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2013,2018 */ +/* Contributors Listed Below - COPYRIGHT 2013,2019 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -47,6 +47,7 @@ #ifdef __HOSTBOOT_RUNTIME #include <prdfP9McbistDomain.H> +#include <prdfP9OcmbChipDomain.H> #include <prdfCenMbaDomain.H> #endif @@ -172,6 +173,10 @@ errlHndl_t noLock_initialize() { ((MbaDomain *)systemPtr->GetDomain(MBA_DOMAIN))->handleRrFo(); } + else if ( MODEL_AXONE == procModel ) + { + ((OcmbChipDomain *)systemPtr->GetDomain(OCMB_DOMAIN))->handleRrFo(); + } else { PRDF_ERR( PRDF_FUNC "Master PROC model %d not supported", procModel ); |