doc: Fix doxygen comments for in-out params

This commit is contained in:
David Yat Sin
2025-07-07 21:44:29 +00:00
committed by Yat Sin, David
parent 45af009c5d
commit 4c2dec5bb8
5 changed files with 16 additions and 16 deletions
@@ -1021,7 +1021,7 @@ static inline UINT_32 GetCoordActiveMask(
****************************************************************************************************
*/
static inline void FillEqBitComponents(
ADDR_EQUATION *pEquation) // [in/out] Equation to calculate bit components for
ADDR_EQUATION *pEquation) // [in,out] Equation to calculate bit components for
{
pEquation->numBitComponents = 1; // We always have at least the address
for (UINT_32 xorN = 1; xorN < ADDR_MAX_EQUATION_COMP; xorN++)
@@ -1049,8 +1049,8 @@ ADDR_E_RETURNCODE Lib::ApplyCustomizedPitchHeight(
const ADDR2_COMPUTE_SURFACE_INFO_INPUT* pIn, ///< [in] input structure
UINT_32 elementBytes, ///< [in] element bytes per element
UINT_32 pitchAlignInElement, ///< [in] pitch alignment in element
UINT_32* pPitch, ///< [in/out] pitch
UINT_32* pHeight ///< [in/out] height
UINT_32* pPitch, ///< [in,out] pitch
UINT_32* pHeight ///< [in,out] height
) const
{
ADDR_E_RETURNCODE returnCode = ADDR_OK;