diff options
author | prashanthacharya <prashanthacharya@in.ibm.com> | 2012-11-02 05:57:10 -0500 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2012-11-28 17:29:17 -0600 |
commit | c9fce6c47656b9b34e23b2cb90c51796fc520df9 (patch) | |
tree | 3d949f4b8588a3f0fee4a80cfc621c59ddfe8bb1 /src/usr/diag/prdf/common/plat/pegasus/prdfP8Proc.C | |
parent | b8c326b959a9f1bcb905397eecdc0ebfd0db5884 (diff) | |
download | talos-hostboot-c9fce6c47656b9b34e23b2cb90c51796fc520df9.tar.gz talos-hostboot-c9fce6c47656b9b34e23b2cb90c51796fc520df9.zip |
Encapsulated PRD codebase with PRDF namespace
RTC: 51223
Change-Id: Ie074cb409083d7b04edeba75d39977eb90082d05
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/2196
Reviewed-by: Zane Shelley <zshelle@us.ibm.com>
Tested-by: Jenkins Server
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/2436
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/diag/prdf/common/plat/pegasus/prdfP8Proc.C')
-rwxr-xr-x | src/usr/diag/prdf/common/plat/pegasus/prdfP8Proc.C | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/usr/diag/prdf/common/plat/pegasus/prdfP8Proc.C b/src/usr/diag/prdf/common/plat/pegasus/prdfP8Proc.C index 961b1785a..e4fbc0c32 100755 --- a/src/usr/diag/prdf/common/plat/pegasus/prdfP8Proc.C +++ b/src/usr/diag/prdf/common/plat/pegasus/prdfP8Proc.C @@ -46,7 +46,7 @@ namespace Proc * @param i_chip P8 chip. * @return SUCCESS */ -int32_t Initialize( PrdfExtensibleChip * i_chip ) +int32_t Initialize( ExtensibleChip * i_chip ) { // FIXME: Add proper initialization as per requirement return SUCCESS; @@ -113,7 +113,7 @@ static inline bool OnlyMcOrExtCS (SCAN_COMM_REGISTER_CLASS * i_glcs, * @param o_hasRecovered - true if chip has a recovered that we want to analyze * @return SUCCESS */ -int32_t CheckForRecovered(PrdfExtensibleChip * i_chip, +int32_t CheckForRecovered(ExtensibleChip * i_chip, bool & o_hasRecovered) { o_hasRecovered = false; @@ -192,7 +192,7 @@ int32_t CheckForRecovered(PrdfExtensibleChip * i_chip, * @return SUCCESS * */ -int32_t CheckForRecoveredSev(PrdfExtensibleChip * i_chip, +int32_t CheckForRecoveredSev(ExtensibleChip * i_chip, uint32_t & o_sev) { SCAN_COMM_REGISTER_CLASS * l_rer = NULL; @@ -257,7 +257,7 @@ int32_t CheckForRecoveredSev(PrdfExtensibleChip * i_chip, * @param o_externalChips - List of external fabrics driving checkstop. * @param o_wofValue - Current WOF value (unused for now). */ -int32_t GetCheckstopInfo(PrdfExtensibleChip * i_chip, +int32_t GetCheckstopInfo(ExtensibleChip * i_chip, bool & o_wasInternal, TARGETING::TargetHandleList & o_externalChips, uint64_t & o_wofValue) @@ -342,7 +342,7 @@ int32_t GetCheckstopInfo(PrdfExtensibleChip * i_chip, } PRDF_PLUGIN_DEFINE( Proc, GetCheckstopInfo ); -int32_t CoreConfigured(PrdfExtensibleChip * i_chip, +int32_t CoreConfigured(ExtensibleChip * i_chip, bool & o_isCoreConfigured) { using namespace TARGETING; |