Skip to content

Commit

Permalink
OCMB sensor enabled fix
Browse files Browse the repository at this point in the history
Change-Id: Ifbc90eef541ac81fd20f52c22e523c5f0436729e
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/82608
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Christopher J Cain <cjcain@us.ibm.com>
Reviewed-by: William A Bryan <wilbryan@us.ibm.com>
Reviewed-by: Martha Broyles <mbroyles@us.ibm.com>
  • Loading branch information
dgilbert999 authored and marthabroyles committed Aug 22, 2019
1 parent e3c65ee commit e11f3af
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/occ_405/cent/ocmb_data.c
Expand Up @@ -81,11 +81,11 @@ void ocmb_init(void)
// enabled.
if(G_membufConfiguration.dts_config & CONFIG_MEMDTS0(membuf_idx))
{
G_dimm_enabled_sensors.bytes[membuf_idx] = DIMM_SENSOR0;
G_dimm_enabled_sensors.bytes[membuf_idx] |= DIMM_SENSOR0;
}
if(G_membufConfiguration.dts_config & CONFIG_MEMDTS1(membuf_idx))
{
G_dimm_enabled_sensors.bytes[membuf_idx] = (DIMM_SENSOR0 >> 1);
G_dimm_enabled_sensors.bytes[membuf_idx] |= (DIMM_SENSOR0 >> 1);
}
TRAC_INFO("ocmb_init: Membuf[%d] Found.",
membuf_idx);
Expand Down
2 changes: 1 addition & 1 deletion src/occ_405/occbuildname.c
Expand Up @@ -34,6 +34,6 @@ volatile const char G_occ_buildname[16] __attribute__((section(".buildname"))) =

#else

volatile const char G_occ_buildname[16] __attribute__((section(".buildname"))) = /*<BuildName>*/ "op_occ_190726a\0" /*</BuildName>*/ ;
volatile const char G_occ_buildname[16] __attribute__((section(".buildname"))) = /*<BuildName>*/ "op_occ_190821a\0" /*</BuildName>*/ ;

#endif

0 comments on commit e11f3af

Please sign in to comment.