diff options
Diffstat (limited to 'src/usr/fapi2/attribute_service.C')
-rw-r--r-- | src/usr/fapi2/attribute_service.C | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/usr/fapi2/attribute_service.C b/src/usr/fapi2/attribute_service.C index 6f999b978..ef588a5ef 100644 --- a/src/usr/fapi2/attribute_service.C +++ b/src/usr/fapi2/attribute_service.C @@ -421,8 +421,11 @@ ReturnCode platGetTargetPos(const Target<TARGET_TYPE_ALL>& i_pFapiTarget, } else { - //RTC: 154950 Add MCA_PORT attribute to DIMM target uint16_t l_pos = l_pTarget->getAttr<TARGETING::ATTR_FAPI_POS>(); + + //@todo-RTC:161594-ATTR_POS is defined as per-drawer, so need to + // mod the value down appropriately + o_pos = l_pos; } |