summaryrefslogtreecommitdiffstats
path: root/src/import/hwpf/fapi2/include/variable_buffer.H
diff options
context:
space:
mode:
authorKahn Evans <kahnevan@us.ibm.com>2015-10-06 13:21:47 -0500
committerPatrick Williams <iawillia@us.ibm.com>2015-12-11 13:40:20 -0600
commitb824f4ec0e58ae02541a18f119fddc32d2dab7ad (patch)
tree93d55b883b7f7991150112b0524dad74831efd6a /src/import/hwpf/fapi2/include/variable_buffer.H
parent03cae2144f336c79e1ee13ee2b2de51afc3c03da (diff)
downloadtalos-hostboot-b824f4ec0e58ae02541a18f119fddc32d2dab7ad.tar.gz
talos-hostboot-b824f4ec0e58ae02541a18f119fddc32d2dab7ad.zip
fapi2 doxygen warning/error cleanup from ecmd repository
Change-Id: I502a6f79f461632588b46e51d5892e2d6b74942d Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/20985 Tested-by: Jenkins Server Reviewed-by: Matt K. Light <mklight@us.ibm.com> Reviewed-by: Brian Silver <bsilver@us.ibm.com> Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com>
Diffstat (limited to 'src/import/hwpf/fapi2/include/variable_buffer.H')
-rw-r--r--src/import/hwpf/fapi2/include/variable_buffer.H14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/import/hwpf/fapi2/include/variable_buffer.H b/src/import/hwpf/fapi2/include/variable_buffer.H
index f8700f663..f69b4e2fb 100644
--- a/src/import/hwpf/fapi2/include/variable_buffer.H
+++ b/src/import/hwpf/fapi2/include/variable_buffer.H
@@ -607,8 +607,8 @@ class variable_buffer
///
/// @brief Shift a buffer left a defined number of bits, from a start bit
- /// @param[in] number of bits to shift
- /// @param[in] offset from 0 to start shift, defaults to ~0 (see operator<<())
+ /// @param[in] i_shiftNum number of bits to shift
+ /// @param[in] i_offset offset from 0 to start shift, defaults to ~0 (see operator<<())
/// @note an offset of ~(0) implies "end of the buffer"
/// @warning there is no shiftLeftandResize - resizing the buffer is left to
/// the caller to alight the operations with integral buffers.
@@ -618,8 +618,8 @@ class variable_buffer
///
/// @brief Shift a buffer right a defined number of bits, from a start bit
- /// @param[in] number of bits to shift
- /// @param[in] offset from 0 to start shift, defaults to 0 (see operator>>())
+ /// @param[in] i_shiftNum number of bits to shift
+ /// @param[in] i_offset offset from 0 to start shift, defaults to 0 (see operator>>())
/// @warning there is no shiftRightandResize - resizing the buffer is left to
/// the caller to alight the operations with integral buffers.
/// @return FAPI2_RC_SUCCESS on success
@@ -682,7 +682,7 @@ class variable_buffer
///
/// @brief operator+()
- /// @param[in] A variable_buffer to append to this
+ /// @param[in] rhs A variable_buffer to append to this
///
inline variable_buffer& operator+(const variable_buffer& rhs)
{
@@ -693,7 +693,7 @@ class variable_buffer
///
/// @brief operator+()
- /// @param[in] A number of bits to add to this buffer
+ /// @param[in] rhs A number of bits to add to this buffer
///
inline variable_buffer& operator+(const bits_type& rhs)
{
@@ -708,7 +708,7 @@ class variable_buffer
///
/// @brief resize()
- /// @param[in] Desired resulting size of the buffer, in bits
+ /// @param[in] rhs Desired resulting size of the buffer, in bits
///
inline variable_buffer& resize(const bits_type& rhs)
{
OpenPOWER on IntegriCloud