Searched refs:demod_stats (Results 1 – 3 of 3) sorted by relevance
/linux-4.1.27/drivers/media/dvb-frontends/ |
D | as102_fe.c | 23 struct as10x_demod_stats demod_stats; member 344 memset(&state->demod_stats, 0, sizeof(state->demod_stats)); in as102_fe_read_status() 348 ret = state->ops->get_stats(state->priv, &state->demod_stats); in as102_fe_read_status() 350 memset(&state->demod_stats, 0, sizeof(state->demod_stats)); in as102_fe_read_status() 366 *snr = state->demod_stats.mer; in as102_fe_read_snr() 394 if (state->demod_stats.has_started) in as102_fe_read_ucblocks() 395 *ucblocks = state->demod_stats.bad_frame_count; in as102_fe_read_ucblocks()
|
D | as102_fe.h | 22 int (*get_stats)(void *priv, struct as10x_demod_stats *demod_stats);
|
/linux-4.1.27/drivers/media/usb/as102/ |
D | as102_drv.c | 237 static int as102_get_stats(void *priv, struct as10x_demod_stats *demod_stats) in as102_get_stats() argument 246 ret = as10x_cmd_get_demod_stats(bus_adap, demod_stats); in as102_get_stats() 253 demod_stats->frame_count, in as102_get_stats() 254 demod_stats->bad_frame_count, in as102_get_stats() 255 demod_stats->bytes_fixed_by_rs, in as102_get_stats() 256 demod_stats->mer); in as102_get_stats()
|