V4L/DVB (10969): lgdt3305: add missing space in comment

small whitespace cleanup - space missing after the *

Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
Michael Krufky 2009-03-11 01:47:53 -03:00 committed by Mauro Carvalho Chehab
parent 1c12148bdc
commit 60ce3c471f
1 changed files with 1 additions and 1 deletions

View 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);