diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2009-03-11 01:47:53 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-03-30 12:43:19 -0300 |
commit | 60ce3c471fdc4f5a173a393710138717b639e3c1 (patch) | |
tree | a971bbf544a90f538277b2d8b43f990d845921b7 | |
parent | 1c12148bdcc6a978ab6a9930d40ddfb9d26e9e82 (diff) |
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>
-rw-r--r-- | drivers/media/dvb/frontends/lgdt3305.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/frontends/lgdt3305.c b/drivers/media/dvb/frontends/lgdt3305.c index 729a30f99d4..f5f77117ec3 100644 --- a/drivers/media/dvb/frontends/lgdt3305.c +++ b/drivers/media/dvb/frontends/lgdt3305.c @@ -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); |