Home
last modified time | relevance | path

Searched refs:fir_state (Results 1 – 2 of 2) sorted by relevance

/openbmc/linux/drivers/misc/echo/
H A Decho.c167 history = fir16_create(&ec->fir_state, ec->fir_taps16[0], ec->taps); in oslec_create()
198 fir16_free(&ec->fir_state); in oslec_create()
213 fir16_free(&ec->fir_state); in oslec_free()
242 fir16_flush(&ec->fir_state); in oslec_flush()
244 ec->fir_state.curr_pos = ec->taps - 1; in oslec_flush()
334 old = (int)ec->fir_state.history[ec->fir_state.curr_pos] * in oslec_update()
335 (int)ec->fir_state.history[ec->fir_state.curr_pos]; in oslec_update()
351 ec->fir_state.coeffs = ec->fir_taps16[0]; in oslec_update()
352 echo_value = fir16(&ec->fir_state, tx); in oslec_update()
H A Decho.h150 struct fir16_state_t fir_state; member