diff options
author | Stephen Cprek <smcprek@us.ibm.com> | 2015-03-11 10:53:17 -0500 |
---|---|---|
committer | Andrew J. Geissler <andrewg@us.ibm.com> | 2015-03-11 11:24:29 -0500 |
commit | e4a5d4324e63004760c0105733242b7d3c0ac406 (patch) | |
tree | 0818bb38301e562623e9a792a9336b6f550f9de7 /src | |
parent | bda236e6e0c7d3aa5165160abbd5ead92ac0a68e (diff) | |
download | talos-hostboot-e4a5d4324e63004760c0105733242b7d3c0ac406.tar.gz talos-hostboot-e4a5d4324e63004760c0105733242b7d3c0ac406.zip |
Fix compile error with config option SBE_UPDATE_INDEPENDENT
The commit RTC 123369, which moved seeprom code back to SBE namespace
did not fail jenkins because no config flags were set.
Change-Id: I69d76f7ea52edbbd375763f796faf2c73156bbf4
RTC: 123369
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/16295
Tested-by: Jenkins Server
Reviewed-by: MATTHEW A. PLOETZ <maploetz@us.ibm.com>
Reviewed-by: Andrew J. Geissler <andrewg@us.ibm.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/usr/sbe/sbe_update.C | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr/sbe/sbe_update.C b/src/usr/sbe/sbe_update.C index a559229c9..5ac49098b 100644 --- a/src/usr/sbe/sbe_update.C +++ b/src/usr/sbe/sbe_update.C @@ -1791,8 +1791,8 @@ namespace SBE reinterpret_cast<void*>(SBE_IMG_VADDR), ((io_sbeState.seeprom_side_to_update == EEPROM::SBE_PRIMARY ) ? - PNOR::SBE_SEEPROM0 : - PNOR::SBE_SEEPROM1 ), + SBE_SEEPROM0 : + SBE_SEEPROM1 ), PNOR::WORKING, imageWasUpdated ); |