Searched refs:demod_stats (Results 1 – 3 of 3) sorted by relevance
/linux-5.19.10/drivers/media/dvb-frontends/ |
D | as102_fe.c | 14 struct as10x_demod_stats demod_stats; member 336 memset(&state->demod_stats, 0, sizeof(state->demod_stats)); in as102_fe_read_status() 340 ret = state->ops->get_stats(state->priv, &state->demod_stats); in as102_fe_read_status() 342 memset(&state->demod_stats, 0, sizeof(state->demod_stats)); in as102_fe_read_status() 358 *snr = state->demod_stats.mer; in as102_fe_read_snr() 386 if (state->demod_stats.has_started) in as102_fe_read_ucblocks() 387 *ucblocks = state->demod_stats.bad_frame_count; in as102_fe_read_ucblocks()
|
D | as102_fe.h | 13 int (*get_stats)(void *priv, struct as10x_demod_stats *demod_stats);
|
/linux-5.19.10/drivers/media/usb/as102/ |
D | as102_drv.c | 228 static int as102_get_stats(void *priv, struct as10x_demod_stats *demod_stats) in as102_get_stats() argument 237 ret = as10x_cmd_get_demod_stats(bus_adap, demod_stats); in as102_get_stats() 244 demod_stats->frame_count, in as102_get_stats() 245 demod_stats->bad_frame_count, in as102_get_stats() 246 demod_stats->bytes_fixed_by_rs, in as102_get_stats() 247 demod_stats->mer); in as102_get_stats()
|