Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
linuxdvb: add more trace info to the tune functions
  • Loading branch information
perexg committed Aug 16, 2014
1 parent 0f43024 commit a75d6b7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/input/mpegts/linuxdvb/linuxdvb_frontend.c
Expand Up @@ -1080,7 +1080,15 @@ linuxdvb_frontend_tune0
/*
* copy the universal parameters to the Linux kernel structure
*/

dmc = &lm->lm_tuning;
#if ENABLE_TRACE
{
char buf2[256];
dvb_mux_conf_str(&lm->lm_tuning, buf2, sizeof(buf2));
tvhtrace("linuxdvb", "tuner %s tunning to %s (freq %i)", buf1, buf2, freq);
}
#endif
memset(&p, 0, sizeof(p));
p.frequency = dmc->dmc_fe_freq;
p.inversion = TR(inversion, inv_tbl, INVERSION_AUTO);
Expand Down

0 comments on commit a75d6b7

Please sign in to comment.