Skip to content

Commit

Permalink
[media] mxl5007t: bugfix DVB-T 7 MHz and 8 MHz bandwidth
Browse files Browse the repository at this point in the history
DVB-T did not work at all - only 6 MHz was working but it is not
commonly used.
Fix it.

Signed-off-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Antti Palosaari authored and Mauro Carvalho Chehab committed Jan 11, 2012
1 parent 083b6b8 commit 9e94136
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/media/common/tuners/mxl5007t.c
Original file line number Diff line number Diff line change
Expand Up @@ -644,8 +644,10 @@ static int mxl5007t_set_params(struct dvb_frontend *fe)
break;
case 7000000:
bw = MxL_BW_7MHz;
break;
case 8000000:
bw = MxL_BW_8MHz;
break;
default:
return -EINVAL;
}
Expand Down

0 comments on commit 9e94136

Please sign in to comment.