summaryrefslogtreecommitdiffstats
path: root/src/usr/diag/prdf/test
diff options
context:
space:
mode:
Diffstat (limited to 'src/usr/diag/prdf/test')
-rwxr-xr-xsrc/usr/diag/prdf/test/prdfsimRasServices.C12
-rwxr-xr-xsrc/usr/diag/prdf/test/prdfsimRasServices.H12
2 files changed, 5 insertions, 19 deletions
diff --git a/src/usr/diag/prdf/test/prdfsimRasServices.C b/src/usr/diag/prdf/test/prdfsimRasServices.C
index 4b7c0724c..72c7d5cb9 100755
--- a/src/usr/diag/prdf/test/prdfsimRasServices.C
+++ b/src/usr/diag/prdf/test/prdfsimRasServices.C
@@ -5,7 +5,7 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
-/* Contributors Listed Below - COPYRIGHT 2013,2014 */
+/* Contributors Listed Below - COPYRIGHT 2013,2018 */
/* [+] International Business Machines Corp. */
/* */
/* */
@@ -34,11 +34,7 @@ namespace PRDF
{
errlHndl_t SimErrDataService::GenerateSrcPfa( ATTENTION_TYPE i_attnType,
- ServiceDataCollector & io_sdc,
- bool & o_initiateHwudump,
- TargetHandle_t & o_dumpTrgt,
- errlHndl_t & o_dumpErrl,
- uint32_t & o_dumpErrlActions )
+ ServiceDataCollector & io_sdc )
{
using namespace TARGETING;
using namespace PlatServices;
@@ -47,9 +43,7 @@ errlHndl_t SimErrDataService::GenerateSrcPfa( ATTENTION_TYPE i_attnType,
errlHndl_t errLog = NULL;
// call the actual ras services function
- errLog = ErrDataService::GenerateSrcPfa( i_attnType, io_sdc,
- o_initiateHwudump, o_dumpTrgt,
- o_dumpErrl, o_dumpErrlActions );
+ errLog = ErrDataService::GenerateSrcPfa( i_attnType, io_sdc );
ErrorSignature * esig = io_sdc.GetErrorSignature();
diff --git a/src/usr/diag/prdf/test/prdfsimRasServices.H b/src/usr/diag/prdf/test/prdfsimRasServices.H
index b53904f1d..baf37c5d9 100755
--- a/src/usr/diag/prdf/test/prdfsimRasServices.H
+++ b/src/usr/diag/prdf/test/prdfsimRasServices.H
@@ -5,7 +5,7 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
-/* Contributors Listed Below - COPYRIGHT 2013,2014 */
+/* Contributors Listed Below - COPYRIGHT 2013,2018 */
/* [+] International Business Machines Corp. */
/* */
/* */
@@ -48,20 +48,12 @@ class SimErrDataService : public ErrDataService
* @brief Creates an SRC, PFA data, and error log from the SDC provided.
* @param i_attnType Analysis attention type.
* @param io_sdc Target SDC.
- * @param o_initiateHwudump whether or not to initiate hwudump
- * @param o_dumpTrgt The DUMP target
- * @param o_dumpErrl The DUMP error handle
- * @param o_dumpErrlActions DUMP error action flags
* @return A non-NULL error log indicates a system termination is required.
* Otherwise, PRD will commit the error log generated.
* @pre The Time of Error must be set in the given SDC.
*/
virtual errlHndl_t GenerateSrcPfa( ATTENTION_TYPE i_attnType,
- ServiceDataCollector & io_sdc,
- bool & o_initiateHwudump,
- TARGETING::TargetHandle_t & o_dumpTrgt,
- errlHndl_t & o_dumpErrl,
- uint32_t & o_dumpErrlActions );
+ ServiceDataCollector & io_sdc );
};
OpenPOWER on IntegriCloud