diff options
author | Adam Muhle <armuhle@us.ibm.com> | 2012-11-02 13:27:28 -0500 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2012-11-03 15:08:54 -0500 |
commit | e73ffc9f16acad1f1fb69839322bc7f41ac4e11c (patch) | |
tree | c30040df99c27c27dad536c105e97f9b66782906 | |
parent | 9f3a481a4535326c3da36b55240e22a4736d60d0 (diff) | |
download | talos-hostboot-e73ffc9f16acad1f1fb69839322bc7f41ac4e11c.tar.gz talos-hostboot-e73ffc9f16acad1f1fb69839322bc7f41ac4e11c.zip |
Remove VPO specific PNOR Traces
While slow, access to real PNOR works in VPO now so these debug
traces aren't critical. Thus, I am removing them to clean
things up.
Change-Id: Iba0a4197ba4e2a4d50896e35776d346708d9a50a
RTC: 45885
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/2199
Reviewed-by: Terry J. Opie <opiet@us.ibm.com>
Tested-by: Jenkins Server
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
-rw-r--r-- | src/usr/pnor/pnordd.C | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/usr/pnor/pnordd.C b/src/usr/pnor/pnordd.C index bca353e5b..1f5c0b272 100644 --- a/src/usr/pnor/pnordd.C +++ b/src/usr/pnor/pnordd.C @@ -200,14 +200,6 @@ errlHndl_t PnorDD::readFlash(void* o_buffer, break; } - //trace each page when running in VPO to show we're making progress. - //TODO: Remove after we get more PNOR runtime in VPO. RTC: 45885 - if(0 != iv_vpoMode) - { - TRACFCOMP(g_trac_pnor,"PNOR read of address %.8X, size=0x%X", i_address, io_buflen); - } - - //If we get here we're doing either MODEL_LPC_MEM, MODEL_REAL_CMD, or MODEL_REAL_MMIO mutex_lock(&cv_mutex); l_err = bufferedSfcRead(i_address, io_buflen, o_buffer); @@ -250,8 +242,6 @@ errlHndl_t PnorDD::writeFlash(void* i_buffer, if(0 != iv_vpoMode) { mutex_lock(&cv_mutex); - //TODO: Remove trace after we get more PNOR runtime in VPO. RTC: 45885 - TRACFCOMP(g_trac_pnor,"PNOR write %.8X, skipping right to bufferedSfcWrite to improve performance", i_address); l_err = bufferedSfcWrite(static_cast<uint32_t>(l_address), 8, i_buffer); |