]> Pileus Git - ~andy/linux/commitdiff
[media] dvb-bt8xx: use dprintk for debug statements
authorJonathan Nieder <jrnieder@gmail.com>
Fri, 6 Jan 2012 17:26:14 +0000 (14:26 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Sat, 7 Jan 2012 13:52:48 +0000 (11:52 -0200)
This way, the messages will be tagged with KERN_DEBUG and not clutter
the log from dmesg unless the "debug" module parameter is set.

[mchehab@redhat.com: whitespace fixes]
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/dvb/bt8xx/dvb-bt8xx.c

index d8a36dd84b6e2159f65e156e9513c23354d48785..6a6f7b95a0c01c8d219b1c09c55ee2c50dfa73e4 100644 (file)
@@ -205,7 +205,7 @@ static int cx24108_tuner_set_params(struct dvb_frontend *fe)
                0x00120000,0x00140000};
 
        #define XTAL 1011100 /* Hz, really 1.0111 MHz and a /10 prescaler */
-       printk("cx24108 debug: entering SetTunerFreq, freq=%d\n",freq);
+       dprintk("cx24108 debug: entering SetTunerFreq, freq=%d\n", freq);
 
        /* This is really the bit driving the tuner chip cx24108 */
 
@@ -216,7 +216,7 @@ static int cx24108_tuner_set_params(struct dvb_frontend *fe)
 
        /* decide which VCO to use for the input frequency */
        for(i = 1; (i < ARRAY_SIZE(osci) - 1) && (osci[i] < freq); i++);
-       printk("cx24108 debug: select vco #%d (f=%d)\n",i,freq);
+       dprintk("cx24108 debug: select vco #%d (f=%d)\n", i, freq);
        band=bandsel[i];
        /* the gain values must be set by SetSymbolrate */
        /* compute the pll divider needed, from Conexant data sheet,
@@ -232,7 +232,7 @@ static int cx24108_tuner_set_params(struct dvb_frontend *fe)
            ((a&0x1f)<<11);
        /* everything is shifted left 11 bits to left-align the bits in the
           32bit word. Output to the tuner goes MSB-aligned, after all */
-       printk("cx24108 debug: pump=%d, n=%d, a=%d\n",pump,n,a);
+       dprintk("cx24108 debug: pump=%d, n=%d, a=%d\n", pump, n, a);
        cx24110_pll_write(fe,band);
        /* set vga and vca to their widest-band settings, as a precaution.
           SetSymbolrate might not be called to set this up */