Skip to content

Commit

Permalink
V4L/DVB (10969): lgdt3305: add missing space in comment
Browse files Browse the repository at this point in the history
small whitespace cleanup - space missing after the *

Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Michael Krufky authored and Mauro Carvalho Chehab committed Mar 30, 2009
1 parent 1c12148 commit 60ce3c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/media/dvb/frontends/lgdt3305.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 60ce3c4

Please sign in to comment.