diff options
author | crgeddes <crgeddes@us.ibm.com> | 2016-06-27 11:06:24 -0500 |
---|---|---|
committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2016-07-25 00:18:44 -0400 |
commit | ee9b96fff03eb771d04a64b5d61e553834415bcf (patch) | |
tree | cf6bdd45267e409ac53a5c62d07cf4e22f1783a3 /src/usr/scom/scom.H | |
parent | 84dd98b173bf22441cf665b182b33ad38638cffc (diff) | |
download | blackbird-hostboot-ee9b96fff03eb771d04a64b5d61e553834415bcf.tar.gz blackbird-hostboot-ee9b96fff03eb771d04a64b5d61e553834415bcf.zip |
Refactor plat_getScom and plat_putScom to use opMode param
Previously opMode had not been implemented to so we were not using
it while making scom calls through the fapi2 hw access interface.
Now that opMode is available the param is being added to the plat
call.
RTC:144505
Change-Id: If9ac3914082620309c73fb29e3a6074abc2cb89b
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/26299
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Andres A. Lugo-Reyes <aalugore@us.ibm.com>
Reviewed-by: Andrew J. Geissler <andrewg@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr/scom/scom.H')
-rw-r--r-- | src/usr/scom/scom.H | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/usr/scom/scom.H b/src/usr/scom/scom.H index 817c255ec..3cb8d6b5b 100644 --- a/src/usr/scom/scom.H +++ b/src/usr/scom/scom.H @@ -162,7 +162,6 @@ errlHndl_t doScomOp(DeviceFW::OperationType i_opType, * @param[in] i_accessType Select from DeviceFW::AccessType enum * @see usr/devicefw/userif.H * @param[in] i_addr Scom Address Value. - * @param[in] i_opMode the fapi2::OpMode for this scom operation * * @return errlHndl_t */ @@ -171,8 +170,7 @@ errlHndl_t checkIndirectAndDoScom(DeviceFW::OperationType i_opType, void* io_buffer, size_t& io_buflen, int64_t i_accessType, - uint64_t i_addr, - uint64_t i_opMode); + uint64_t i_addr); /** * @brief Performs a SCom operation |