V4L/DVB (10969): lgdt3305: add missing space in comment
authorMichael Krufky <mkrufky@linuxtv.org>
Wed, 11 Mar 2009 04:47:53 +0000 (01:47 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Mon, 30 Mar 2009 15:43:19 +0000 (12:43 -0300)
small whitespace cleanup - space missing after the *

Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/dvb/frontends/lgdt3305.c

index 729a30f..f5f7711 100644 (file)
@@ -931,7 +931,7 @@ static int lgdt3305_read_snr(struct dvb_frontend *fe, u16 *snr)
                return -EINVAL;
        }
        state->snr = calculate_snr(noise, c);
-       /*report SNR in dB * 10 */
+       /* report SNR in dB * 10 */
        *snr = (state->snr / ((1 << 24) / 10));
        lg_dbg("noise = 0x%08x, snr = %d.%02d dB\n", noise,
               state->snr >> 24, (((state->snr >> 8) & 0xffff) * 100) >> 16);