summaryrefslogtreecommitdiff
path: root/drivers/media/common/tuners/mxl5007t.c
diff options
context:
space:
mode:
authorAntti Palosaari <crope@iki.fi>2012-01-10 13:31:37 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2012-01-10 22:38:15 -0200
commit9e94136d364a424b53048031bd35a4261ae8f9e2 (patch)
tree986bcd85b95c713b703800c01d1d40ab0ac287e0 /drivers/media/common/tuners/mxl5007t.c
parent083b6b8a234dc13121ddab7fc622574d8ab66bc4 (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/mxl5007t.c')
-rw-r--r--drivers/media/common/tuners/mxl5007t.c2
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)
break;
case 7000000:
bw = MxL_BW_7MHz;
+ break;
case 8000000:
bw = MxL_BW_8MHz;
+ break;
default:
return -EINVAL;
}