]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
[media] dvb-frontends/stv0367: print CPAMP status only if stv_debug is enabled
authorDaniel Scheller <d.scheller@gmx.net>
Wed, 29 Mar 2017 16:43:02 +0000 (13:43 -0300)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Tue, 20 Jun 2017 12:18:43 +0000 (09:18 -0300)
The CPAMP log lines generated in stv0367_ter_check_cpamp() are printed
everytime tuning succeeds or fails, quite cluttering the normal kernel log.
Use dprintk() instead of printk(KERN_ERR...) so that if the information is
needed, it'll be printed when the stv_debug modparam is enabled.

Signed-off-by: Daniel Scheller <d.scheller@gmx.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
drivers/media/dvb-frontends/stv0367.c

index fc80934387dd3a8a2bd8b9dbcecd4b757e383503..0064d9d16fe2397885ed443efaf148b399b22dc3 100644 (file)
@@ -1262,9 +1262,9 @@ stv0367_ter_signal_type stv0367ter_check_cpamp(struct stv0367_state *state,
        dprintk("******last CPAMPvalue= %d at wd=%d\n", CPAMPvalue, wd);
        if (CPAMPvalue < CPAMPMin) {
                CPAMPStatus = FE_TER_NOCPAMP;
-               printk(KERN_ERR "CPAMP failed\n");
+               dprintk("%s: CPAMP failed\n", __func__);
        } else {
-               printk(KERN_ERR "CPAMP OK !\n");
+               dprintk("%s: CPAMP OK !\n", __func__);
                CPAMPStatus = FE_TER_CPAMPOK;
        }