Skip to content

Commit

Permalink
[PATCH] v4l: 866: fix bug with setting mt2050 radio frequency
Browse files Browse the repository at this point in the history
- Fix bug with setting mt2050 radio frequency

Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru>
Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Nickolay V. Shmyrev authored and Linus Torvalds committed Nov 9, 2005
1 parent aa8d5e7 commit e9d096d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/media/video/mt20xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ static void mt2050_set_radio_freq(struct i2c_client *c, unsigned int freq)
struct tuner *t = i2c_get_clientdata(c);
int if2 = t->radio_if2;

mt2050_set_if_freq(c, freq*62500, if2);
mt2050_set_if_freq(c, freq * 1000 / 16, if2);
mt2050_set_antenna(c, radio_antenna);
}

Expand Down

0 comments on commit e9d096d

Please sign in to comment.