All of lore.kernel.org
 help / color / mirror / Atom feed
From: Antti Palosaari <crope@iki.fi>
To: linux-media <linux-media@vger.kernel.org>
Cc: Mauro Carvalho Chehab <mchehab@redhat.com>
Subject: [PATCH] mxl5007t: bugfix DVB-T 7 MHz and 8 MHz bandwidth
Date: Tue, 10 Jan 2012 19:31:37 +0200	[thread overview]
Message-ID: <4F0C75F9.5000200@iki.fi> (raw)

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>
---
  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 8f4899b..69e453e 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;
  		}
-- 
1.7.4.4

                 reply	other threads:[~2012-01-10 17:31 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4F0C75F9.5000200@iki.fi \
    --to=crope@iki.fi \
    --cc=linux-media@vger.kernel.org \
    --cc=mchehab@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.