From 9e94136d364a424b53048031bd35a4261ae8f9e2 Mon Sep 17 00:00:00 2001 From: Antti Palosaari Date: Tue, 10 Jan 2012 13:31:37 -0300 Subject: [PATCH] [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 Signed-off-by: Mauro Carvalho Chehab --- drivers/media/common/tuners/mxl5007t.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/media/common/tuners/mxl5007t.c b/drivers/media/common/tuners/mxl5007t.c index 8f4899b0dc6..69e453ef0a1 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; } -- 2.41.0