[media] xc5000: properly show quality register values
authorDevin Heitmueller <dheitmueller@kernellabs.com>
Tue, 7 Aug 2012 01:46:55 +0000 (22:46 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Thu, 9 Aug 2012 23:32:24 +0000 (20:32 -0300)
The quality register only has relevant data in bits 2-0, so discard the
other bits (which results in a value being printed that is consistent
with the expected 0-7 range).

Signed-off-by: Devin Heitmueller <dheitmueller@kernellabs.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/common/tuners/xc5000.c

index 362a8d7c9738e018df797ed7504c215b4595d0de..a8f108652f5587f6d747c6964521517615c13b8f 100644 (file)
@@ -686,7 +686,7 @@ static void xc_debug_dump(struct xc5000_priv *priv)
        dprintk(1, "*** Frame lines = %d\n", frame_lines);
 
        xc_get_quality(priv,  &quality);
-       dprintk(1, "*** Quality (0:<8dB, 7:>56dB) = %d\n", quality);
+       dprintk(1, "*** Quality (0:<8dB, 7:>56dB) = %d\n", quality & 0x07);
 }
 
 static int xc5000_set_params(struct dvb_frontend *fe)
This page took 0.025631 seconds and 5 git commands to generate.