From 40778a92810f9d7de24ef18083412b9f2574c8f6 Mon Sep 17 00:00:00 2001 From: Andre Marin Date: Wed, 5 Sep 2018 14:51:17 -0500 Subject: [PATCH] Initial mss_field endian modification Change-Id: Ia64288c78b36dc77cd0440a83e859650631e3c06 Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/65722 Reviewed-by: Louis Stermole Tested-by: Jenkins Server Tested-by: HWSV CI Tested-by: Hostboot CI Reviewed-by: STEPHEN GLANCY Reviewed-by: Jennifer A. Stofer Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/69959 Tested-by: FSP CI Jenkins Reviewed-by: Sachin Gupta --- .../ocmb/explorer/procedures/hwp/memory/lib/i2c/exp_i2c.H | 6 +++--- 1 file 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 0c989cd47..0a6ad3e35 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& 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