src/audio/fir.h: fix style

Make checkpatch happy

Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
This commit is contained in:
Pierre-Louis Bossart 2019-01-15 23:08:02 -06:00 committed by Liam Girdwood
parent 741af6c581
commit 63e3edeb7c
1 changed files with 2 additions and 2 deletions

View File

@ -66,7 +66,7 @@ void eq_fir_s32(struct fir_state_32x16 *fir, struct comp_buffer *source,
/* The next functions are inlined to optmize execution speed */
static inline void fir_part_32x16(int64_t *y, int taps, const int16_t c[],
int *ic, int32_t d[], int *id)
int *ic, int32_t d[], int *id)
{
int n;
@ -107,7 +107,7 @@ static inline int32_t fir_32x16(struct fir_state_32x16 *fir, int32_t x)
* is >= 0 after FIR computation.
*/
fir_part_32x16(&y, fir->length, fir->coef, &i, fir->delay,
&tmp_ri);
&tmp_ri);
} else {
n2 = fir->length - n1;
/* Part 1, loop n1 times, fir_ri becomes -1 */