Skip to content

Commit ca64ccf

Browse files
marc-hblgirdwood
authored andcommitted
math/trig.c: remove bogus \CORDIC doxygen command
Fixes warnings: sof/src/math/trig.c:42: warning: Found unknown command '\CORDIC' sof/src/math/trig.c:103: warning: Found unknown command '\CORDIC' sof/src/math/trig.c:183: warning: Found unknown command '\CORDIC' sof/src/math/trig.c:42: warning: Found unknown command '\CORDIC' sof/src/math/trig.c:103: warning: Found unknown command '\CORDIC' sof/src/math/trig.c:183: warning: Found unknown command '\CORDIC' etc. Signed-off-by: Marc Herbert <marc.herbert@intel.com>
1 parent 29fa4e1 commit ca64ccf

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/math/trig.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const int32_t cord_arcsincos_q28fl = Q_CONVERT_FLOAT(1.4142135605216026 / 2, 28
4040
/* 1073741824, deg = 57.2957795130823229 or round(1*2^30)*/
4141
const int32_t cord_arcsincos_q30fl = Q_CONVERT_FLOAT(1.0000000000000000, 30);
4242
/**
43-
* \CORDIC-based approximation of sine, cosine and complex exponential
43+
* CORDIC-based approximation of sine, cosine and complex exponential
4444
*/
4545
void cordic_approx(int32_t th_rad_fxp, int32_t a_idx, int32_t *sign, int32_t *b_yn, int32_t *xn,
4646
int32_t *th_cdc_fxp)
@@ -101,7 +101,7 @@ void cordic_approx(int32_t th_rad_fxp, int32_t a_idx, int32_t *sign, int32_t *b_
101101
}
102102

103103
/**
104-
* \CORDIC-based approximation for inverse cosine
104+
* CORDIC-based approximation for inverse cosine
105105
* Arguments : int32_t cosvalue
106106
* int16_t numiters
107107
* Return Type : int32_t
@@ -181,7 +181,7 @@ int32_t is_scalar_cordic_acos(int32_t cosvalue, int16_t numiters)
181181
}
182182

183183
/**
184-
* \CORDIC-based approximation for inverse sine
184+
* CORDIC-based approximation for inverse sine
185185
* Arguments : int32_t sinvalue
186186
* int16_t numiters
187187
* Return Type : int32_t

0 commit comments

Comments
 (0)