summaryrefslogtreecommitdiffstats
path: root/src/usr/pnor
diff options
context:
space:
mode:
authorChristian Geddes <crgeddes@us.ibm.com>2017-11-20 18:44:39 -0600
committerDaniel M. Crowell <dcrowell@us.ibm.com>2017-11-21 22:00:52 -0500
commit397dacc3e9ad5f1e4cddc7ee036cfbb583f010eb (patch)
treea631a5701eaa79e00dc3ab63c2be9e4d99463488 /src/usr/pnor
parent94404b004adbf4ba85ff1bac87ca20ca768a506b (diff)
downloadtalos-hostboot-397dacc3e9ad5f1e4cddc7ee036cfbb583f010eb.tar.gz
talos-hostboot-397dacc3e9ad5f1e4cddc7ee036cfbb583f010eb.zip
Remove annoying mbox traces (TRACF -> TRACD)
While debugging some pnor stuff I had a hard time seeing any PNOR traces because these mbox related PNOR traces kept flushing out the traces I was trying to see from the buffer. This commit makes the traces TRACD (debug) rather than TRACF. Change-Id: I4f752c5d6110e8c4363276683a26f56210496b8f Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/49927 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com> Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com> Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Reviewed-by: William G. Hoffa <wghoffa@us.ibm.com> Reviewed-by: Prachi Gupta <pragupta@us.ibm.com> Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr/pnor')
-rw-r--r--src/usr/pnor/ast_mboxdd.C8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/usr/pnor/ast_mboxdd.C b/src/usr/pnor/ast_mboxdd.C
index df9b6c991..19d3f4f90 100644
--- a/src/usr/pnor/ast_mboxdd.C
+++ b/src/usr/pnor/ast_mboxdd.C
@@ -86,7 +86,7 @@ errlHndl_t astMbox::doMessage(mboxMessage& io_msg)
bool l_prot_error = false;
int i;
- TRACFCOMP( g_trac_pnor, ENTER_MRK"astMboxDD::doMessage(0x%02x)",
+ TRACDCOMP( g_trac_pnor, ENTER_MRK"astMboxDD::doMessage(0x%02x)",
io_msg.iv_cmd );
io_msg.iv_seq = iv_mboxMsgSeq++;
@@ -119,7 +119,7 @@ errlHndl_t astMbox::doMessage(mboxMessage& io_msg)
break;
}
- TRACFCOMP( g_trac_pnor, "Command sent, waiting for response...");
+ TRACDCOMP( g_trac_pnor, "Command sent, waiting for response...");
/* Wait for response */
while ( l_loops++ < MBOX_MAX_RESP_WAIT_US && !l_err )
@@ -215,7 +215,7 @@ errlHndl_t astMbox::doMessage(mboxMessage& io_msg)
uint8_t old_cmd = io_msg.iv_cmd;
// Read response
- TRACFCOMP( g_trac_pnor, "Reading response data...");
+ TRACDCOMP( g_trac_pnor, "Reading response data...");
for (i = 0; i < BMC_MBOX_DATA_REGS && !l_err; i++)
{
@@ -228,7 +228,7 @@ errlHndl_t astMbox::doMessage(mboxMessage& io_msg)
break;
}
- TRACFCOMP( g_trac_pnor, "Message: cmd:%02x seq:%02x a:%02x %02x %02x %02x %02x..resp:%02x",
+ TRACDCOMP( g_trac_pnor, "Message: cmd:%02x seq:%02x a:%02x %02x %02x %02x %02x..resp:%02x",
io_msg.iv_cmd, io_msg.iv_seq, io_msg.iv_args[0],
io_msg.iv_args[1], io_msg.iv_args[2], io_msg.iv_args[3],
io_msg.iv_args[4], io_msg.iv_resp);
OpenPOWER on IntegriCloud