summaryrefslogtreecommitdiffstats
path: root/src/import
diff options
context:
space:
mode:
authorAndre Marin <aamarin@us.ibm.com>2018-09-05 14:51:17 -0500
committerSachin Gupta <sgupta2m@in.ibm.com>2019-01-10 21:41:51 -0600
commit40778a92810f9d7de24ef18083412b9f2574c8f6 (patch)
treee6d5f22b20ce1ad36aae17287c3f60eaeda64b13 /src/import
parentb1e13ff2022b42a6d9f7db122a4dd2b103c35422 (diff)
downloadtalos-sbe-40778a92810f9d7de24ef18083412b9f2574c8f6.tar.gz
talos-sbe-40778a92810f9d7de24ef18083412b9f2574c8f6.zip
Initial mss_field endian modification
Change-Id: Ia64288c78b36dc77cd0440a83e859650631e3c06 Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/65722 Reviewed-by: Louis Stermole <stermole@us.ibm.com> Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: HWSV CI <hwsv-ci+hostboot@us.ibm.com> Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com> Reviewed-by: STEPHEN GLANCY <sglancy@us.ibm.com> Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com> Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/69959 Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Reviewed-by: Sachin Gupta <sgupta2m@in.ibm.com>
Diffstat (limited to 'src/import')
-rw-r--r--src/import/chips/ocmb/explorer/procedures/hwp/memory/lib/i2c/exp_i2c.H6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/import/chips/ocmb/explorer/procedures/hwp/memory/lib/i2c/exp_i2c.H b/src/import/chips/ocmb/explorer/procedures/hwp/memory/lib/i2c/exp_i2c.H
index 0c989cd4..0a6ad3e3 100644
--- a/src/import/chips/ocmb/explorer/procedures/hwp/memory/lib/i2c/exp_i2c.H
+++ b/src/import/chips/ocmb/explorer/procedures/hwp/memory/lib/i2c/exp_i2c.H
@@ -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
OpenPOWER on IntegriCloud