From 535ffa6ca6f8698cf1b3a7367bd6aeedbe7a2872 Mon Sep 17 00:00:00 2001 From: Ralph Metzler Date: Tue, 3 May 2016 22:05:18 +0200 Subject: [PATCH] show tuning offset --- frontends/stv0910.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontends/stv0910.c b/frontends/stv0910.c index d06dca7..0e5e8fe 100644 --- a/frontends/stv0910.c +++ b/frontends/stv0910.c @@ -1067,7 +1067,7 @@ static int get_frequency_offset(struct stv *state, s32 *off) if (derot & (1<<23)) derot |= 0xFF000000; *off = - (s32) (((s64) derot * (s64) state->base->mclk) >> 24); - pr_info("foff = %d\n", *off); + /*pr_info("foff = %d\n", *off);*/ return 0; }