Skip to content

Commit

Permalink
V4L/DVB (6403): mt2131: replace comma with semicolon fix
Browse files Browse the repository at this point in the history
Semicolon fix.

Signed-off-by: Steven Toth <stoth@hauppauge.com>
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
  • Loading branch information
Steven Toth authored and Mauro Carvalho Chehab committed Nov 4, 2007
1 parent dd7d501 commit 195ccf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/media/dvb/frontends/mt2131.c
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ static int mt2131_set_params(struct dvb_frontend *fe,
f_lo1 = (f_lo1 / 250) * 250;
f_lo2 = f_lo1 - freq - MT2131_IF2;

priv->frequency = (f_lo1 - f_lo2 - MT2131_IF2) * 1000,
priv->frequency = (f_lo1 - f_lo2 - MT2131_IF2) * 1000;

/* Frequency LO1 = 16MHz * (DIV1 + NUM1/8192 ) */
num1 = f_lo1 * 64 / (MT2131_FREF / 128);
Expand Down

0 comments on commit 195ccf6

Please sign in to comment.