diff options
author | Dan Crowell <dcrowell@us.ibm.com> | 2019-02-16 10:43:51 -0600 |
---|---|---|
committer | RAJA DAS <rajadas2@in.ibm.com> | 2019-03-22 21:13:29 -0500 |
commit | e27b0cc841ed13a35b7b7c5a6c8d065fc9e00b06 (patch) | |
tree | 82317288120790493aeb482fb46411b3689c3b9c /src | |
parent | e02d72ae04fe9f0c763a18e10c09aad692510c2c (diff) | |
download | talos-sbe-e27b0cc841ed13a35b7b7c5a6c8d065fc9e00b06.tar.gz talos-sbe-e27b0cc841ed13a35b7b7c5a6c8d065fc9e00b06.zip |
Modify rank variable for OCMB VPD lookup
Switching from 'number of ranks' to 'which rank'.
Change-Id: I5f489dc507fbec1e0f835742cb1266d60884b1ca
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/71995
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Reviewed-by: Roland Veloz <rveloz@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Tested-by: PPE CI <ppe-ci+hostboot@us.ibm.com>
Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com>
Reviewed-by: ANDRE A. MARIN <aamarin@us.ibm.com>
Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com>
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/72294
Reviewed-by: RAJA DAS <rajadas2@in.ibm.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/import/hwpf/fapi2/include/fapi2_vpd_access.H | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/import/hwpf/fapi2/include/fapi2_vpd_access.H b/src/import/hwpf/fapi2/include/fapi2_vpd_access.H index ec8ced53..269b8af1 100644 --- a/src/import/hwpf/fapi2/include/fapi2_vpd_access.H +++ b/src/import/hwpf/fapi2/include/fapi2_vpd_access.H @@ -91,7 +91,7 @@ class VPDInfo<TARGET_TYPE_OCMB_CHIP> : iv_vpd_type(i_vpd_type), iv_size(VPD_INFO_INVALID_64), iv_omi_freq_mhz(VPD_INFO_INVALID_64), - iv_rank_count(VPD_INFO_INVALID_64), + iv_rank(VPD_INFO_INVALID_64), iv_is_config_ffdc_enabled(true), iv_efd_type(VPD_INFO_INVALID_8), iv_dmb_mfg_id(VPD_INFO_INVALID_16), @@ -110,8 +110,8 @@ class VPDInfo<TARGET_TYPE_OCMB_CHIP> // frequency of attached OMI bus uint64_t iv_omi_freq_mhz; - // number of master ranks - uint64_t iv_rank_count; + // rank for which settings are valid + uint64_t iv_rank; // set to false to avoid collecting a real ReturnCode bool iv_is_config_ffdc_enabled; |