diff options
author | Antti Palosaari <crope@iki.fi> | 2012-01-10 11:31:37 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-01-10 19:38:15 -0500 |
commit | 9e94136d364a424b53048031bd35a4261ae8f9e2 (patch) | |
tree | 986bcd85b95c713b703800c01d1d40ab0ac287e0 /drivers/media/common/tuners | |
parent | 083b6b8a234dc13121ddab7fc622574d8ab66bc4 (diff) |
[media] mxl5007t: bugfix DVB-T 7 MHz and 8 MHz bandwidth
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>
Diffstat (limited to 'drivers/media/common/tuners')
-rw-r--r-- | drivers/media/common/tuners/mxl5007t.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/media/common/tuners/mxl5007t.c b/drivers/media/common/tuners/mxl5007t.c index 8f4899b0dc64..69e453ef0a1a 100644 --- a/drivers/media/common/tuners/mxl5007t.c +++ b/drivers/media/common/tuners/mxl5007t.c | |||
@@ -644,8 +644,10 @@ static int mxl5007t_set_params(struct dvb_frontend *fe) | |||
644 | break; | 644 | break; |
645 | case 7000000: | 645 | case 7000000: |
646 | bw = MxL_BW_7MHz; | 646 | bw = MxL_BW_7MHz; |
647 | break; | ||
647 | case 8000000: | 648 | case 8000000: |
648 | bw = MxL_BW_8MHz; | 649 | bw = MxL_BW_8MHz; |
650 | break; | ||
649 | default: | 651 | default: |
650 | return -EINVAL; | 652 | return -EINVAL; |
651 | } | 653 | } |