diff options
| author | Elizabeth Liner <eliner@us.ibm.com> | 2016-01-18 11:27:52 -0600 |
|---|---|---|
| committer | Stephen Cprek <smcprek@us.ibm.com> | 2016-02-19 17:06:15 -0600 |
| commit | 6e1541d8bb6fbdbccf963941db9ab79bae2365e9 (patch) | |
| tree | 3ca32ba7752a048e8775fe5074c4b539ac0dc71f /src/include | |
| parent | ecb3640364de919e9a22683338cb46b8858073ca (diff) | |
| download | blackbird-hostboot-6e1541d8bb6fbdbccf963941db9ab79bae2365e9.tar.gz blackbird-hostboot-6e1541d8bb6fbdbccf963941db9ab79bae2365e9.zip | |
Set watchdog and set sensors are now asynchronous sends
Backport: master-p8
Change-Id: If8741e67986c6d6df95a655fb5669df764649e82
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/18993
Tested-by: Jenkins Server
Reviewed-by: Brian Silver <bsilver@us.ibm.com>
Reviewed-by: Richard J. Knight <rjknight@us.ibm.com>
Reviewed-by: WILLIAM G. HOFFA <wghoffa@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/usr/ipmi/ipmisensor.H | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/src/include/usr/ipmi/ipmisensor.H b/src/include/usr/ipmi/ipmisensor.H index ba7d7bfd1..23dc594da 100644 --- a/src/include/usr/ipmi/ipmisensor.H +++ b/src/include/usr/ipmi/ipmisensor.H @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2014,2015 */ +/* Contributors Listed Below - COPYRIGHT 2014,2016 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -359,24 +359,16 @@ namespace SENSOR /** * @brief Send set sensor reading and event status command * Helper function to send the sensor reading to the BMC, this - * command executes synchronously. + * command executes asynchronously. * - * @param[inout] io_data - Initially contains the command and data - * to send to the BMC, will hold the BMC - * response when the command returns. - * - * @param[out] o_completion_code - Return value defined by the IPMI - * spec and returned in the message - * from the BMC to indicate if the - * command processing completed - * successfully. + * @param[in] i_data - Contains the command and data + * to send to the BMC. * * @return Errorlog handle * */ errlHndl_t sendSetSensorReading( - setSensorReadingRequest *& io_data, - IPMI::completion_code& o_completion_code ); + setSensorReadingRequest * i_data); /** * @brief helper function to get the sensor nubmer |

