Skip to content

Commit

Permalink
Initial mss_field endian modification
Browse files Browse the repository at this point in the history
Change-Id: Ia64288c78b36dc77cd0440a83e859650631e3c06
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/65722
Reviewed-by: Louis Stermole <[email protected]>
Tested-by: Jenkins Server <[email protected]>
Tested-by: HWSV CI <[email protected]>
Tested-by: Hostboot CI <[email protected]>
Reviewed-by: STEPHEN GLANCY <[email protected]>
Reviewed-by: Jennifer A. Stofer <[email protected]>
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/69959
Tested-by: FSP CI Jenkins <[email protected]>
Reviewed-by: Sachin Gupta <[email protected]>
  • Loading branch information
aamarin authored and sgupta2m committed Jan 11, 2019
1 parent b1e13ff commit 40778a9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,12 +127,12 @@ inline void boot_config_setup(std::vector<uint8_t>& io_data)

{
// Need data length as well - boot config can only ever be written
io_data.insert(io_data.begin(), FW_BOOT_CONFIG_BYTE_LEN);
io_data.push_back(FW_BOOT_CONFIG_BYTE_LEN);

// Then add the command
io_data.insert(io_data.begin(), FW_BOOT_CONFIG);
io_data.push_back(FW_BOOT_CONFIG);

// Written commands need to be in the form of
// Written commands need to be in the form of (MSB first)
// CMD
// DATA LEN
// DATA
Expand Down

0 comments on commit 40778a9

Please sign in to comment.