diff options
author | Marty Gloff <mgloff@us.ibm.com> | 2017-04-18 13:42:40 -0500 |
---|---|---|
committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2017-04-26 16:07:41 -0400 |
commit | 198d144f57d4c7042f04eb3b4c9658d42ab6278d (patch) | |
tree | 2e80697bc687283d44ff7f2a8e7c7a79c4ec62a7 | |
parent | ec1b9e5daacce95f00521fdc3af538e632709ade (diff) | |
download | talos-hostboot-198d144f57d4c7042f04eb3b4c9658d42ab6278d.tar.gz talos-hostboot-198d144f57d4c7042f04eb3b4c9658d42ab6278d.zip |
Remove Write Cycle Time work around
Remove code to force the the write cycle time for the SBE SEEPROM to
a minimum value of 10.
Change-Id: I61c8331cf56154095135951063b40956ba8f3ca6
RTC: 164392
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/39382
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Corey V. Swenson <cswenson@us.ibm.com>
Reviewed-by: Christian R. Geddes <crgeddes@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
-rwxr-xr-x | src/usr/i2c/eepromdd.C | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/usr/i2c/eepromdd.C b/src/usr/i2c/eepromdd.C index 6e1d8fc47..1b9dba739 100755 --- a/src/usr/i2c/eepromdd.C +++ b/src/usr/i2c/eepromdd.C @@ -1608,11 +1608,6 @@ errlHndl_t eepromReadAttributes ( TARGETING::Target * i_target, o_i2cInfo.devSize_KB = eepromData.maxMemorySizeKB; o_i2cInfo.chipCount = eepromData.chipCount; o_i2cInfo.writeCycleTime = eepromData.writeCycleTime; - // @TODO RTC:164392 Adjust until MRW is corrected CMVC 1010449/SW371374 - if (o_i2cInfo.writeCycleTime < 10) - { - o_i2cInfo.writeCycleTime = 10; - } // Convert attribute info to eeprom_addr_size_t enum if ( eepromData.byteAddrOffset == 0x3 ) |