Skip to content

Commit

Permalink
V4L/DVB (6858): Fix offset for ATSC
Browse files Browse the repository at this point in the history
ATSC works with offset=0

Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
  • Loading branch information
Mauro Carvalho Chehab committed Jan 25, 2008
1 parent 5e3c596 commit 3ac510e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/media/video/tuner-xc2028.c
Original file line number Diff line number Diff line change
Expand Up @@ -873,7 +873,7 @@ static int generic_set_freq(struct dvb_frontend *fe, u32 freq /* in HZ */,
*/
if (new_mode == T_ANALOG_TV) {
rc = send_seq(priv, {0x00, 0x00});
} else {
} else if (!(priv->cur_fw.type & ATSC)) {
offset = 2750000;
/*
* We must adjust the offset by 500kHz in two cases in order
Expand Down

0 comments on commit 3ac510e

Please sign in to comment.