Skip to content

Commit

Permalink
Fix exp_inband_wrap makefile
Browse files Browse the repository at this point in the history
Change-Id: Ie754ebd6eb03cb0a707cfbd912a8b6dc11d4d961
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/66740
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Reviewed-by: Benjamin Gass <bgass@us.ibm.com>
Reviewed-by: Thi N. Tran <thi@us.ibm.com>
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/67796
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Reviewed-by: Christian R. Geddes <crgeddes@us.ibm.com>
  • Loading branch information
BenAtIBM authored and crgeddes committed Oct 30, 2018
1 parent 98630bf commit 990f7cf
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@
#include <exp_data_structs.H>
#include <explorer_scom_addresses.H>
#include <explorer_scom_addresses_fld.H>
#include <generic/memory/lib/utils/shared/mss_generic_consts.H>
#include <chips/ocmb/explorer/common/include/exp_data_structs.H>
#include <chips/centaur/procedures/hwp/memory/lib/shared/dimmConsts.H>

namespace mss
{
Expand Down Expand Up @@ -144,7 +145,7 @@ void forceLE(const T& i_input, std::vector<uint8_t>& io_data)
io_data.push_back(l_byte);

// Shift higher byte value into lowest no matter existing endianness
l_temp >>= mss::BITS_PER_BYTE;
l_temp >>= BITS_PER_BYTE;
}
}

Expand Down Expand Up @@ -194,7 +195,7 @@ bool readLE(const std::vector<uint8_t>& i_input, uint32_t& io_idx, T& o_data)
{
l_idx--;
uint8_t v = i_input[l_idx];
o_data <<= mss::BITS_PER_BYTE;
o_data <<= BITS_PER_BYTE;
o_data |= v;
}

Expand Down

0 comments on commit 990f7cf

Please sign in to comment.