All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mauro Carvalho Chehab <mchehab@redhat.com>
To: stefan.ringel@arcor.de
Cc: linux-media@vger.kernel.org, d.belimov@gmail.com
Subject: Re: [PATCH 2/5] tm6000: add dtv78 parameter
Date: Tue, 19 Apr 2011 18:22:57 -0300	[thread overview]
Message-ID: <4DADFD31.1010200@redhat.com> (raw)
In-Reply-To: <1301948324-27186-2-git-send-email-stefan.ringel@arcor.de>

Em 04-04-2011 17:18, stefan.ringel@arcor.de escreveu:
> From: Stefan Ringel <stefan.ringel@arcor.de>
> 
> add dtv78 parameter

The dtv78 entry is a hack meant for card usage in Australia, that
speeds up channel detection there. Again, it should be specified
only when needed, and at per-board basis.
> 
> 
> Signed-off-by: Stefan Ringel <stefan.ringel@arcor.de>
> ---
>  drivers/staging/tm6000/tm6000-cards.c |   11 +++++++++--
>  1 files changed, 9 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/staging/tm6000/tm6000-cards.c b/drivers/staging/tm6000/tm6000-cards.c
> index eef58da..cf2e76c 100644
> --- a/drivers/staging/tm6000/tm6000-cards.c
> +++ b/drivers/staging/tm6000/tm6000-cards.c
> @@ -65,6 +65,9 @@ static unsigned int xc2028_mts;
>  module_param(xc2028_mts, int, 0644);
>  MODULE_PARM_DESC(xc2028_mts, "enable mts firmware (xc2028/3028 only)");
>  
> +static unsigned int xc2028_dtv78;
> +module_param(xc2028_dtv78, int, 0644);
> +MODULE_PARM_DESC(xc2028_dtv78, "enable dualband config (xc2028/3028 only)");
>  
>  struct tm6000_board {
>  	char            *name;
> @@ -687,8 +690,12 @@ static void tm6000_config_tuner(struct tm6000_core *dev)
>  		ctl.read_not_reliable = 0;
>  		ctl.msleep = 10;
>  		ctl.demod = XC3028_FE_ZARLINK456;
> -		ctl.vhfbw7 = 1;
> -		ctl.uhfbw8 = 1;
> +
> +		if (xc2028_dtv78) {
> +			ctl.vhfbw7 = 1;
> +			ctl.uhfbw8 = 1;
> +		}
> +
>  		if (xc2028_mts)
>  			ctl.mts = 1;
>  


  reply	other threads:[~2011-04-19 21:23 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-04-04 20:18 [PATCH 1/5] tm6000: add mts parameter stefan.ringel
2011-04-04 20:18 ` [PATCH 2/5] tm6000: add dtv78 parameter stefan.ringel
2011-04-19 21:22   ` Mauro Carvalho Chehab [this message]
2011-04-20  8:36     ` Stefan Ringel
     [not found]     ` <4DAE96F8.2070307@arcor.de>
     [not found]       ` <4DAED3E0.2030606@redhat.com>
2011-04-20 14:30         ` Stefan Ringel
2011-05-03 10:04           ` Mauro Carvalho Chehab
2011-05-03 16:37             ` Stefan Ringel
2011-04-04 20:18 ` [PATCH 3/5] tm6000: add audio mode parameter stefan.ringel
2011-04-19 21:26   ` Mauro Carvalho Chehab
2011-04-20  8:36     ` Stefan Ringel
2011-05-03 10:07       ` Mauro Carvalho Chehab
2011-05-03 14:25         ` Stefan Ringel arcor
2011-05-03 14:42           ` Mauro Carvalho Chehab
2011-05-03 14:52             ` Stefan Ringel
2011-05-03 15:02               ` Stefan Ringel
2011-04-04 20:18 ` [PATCH 4/5] tm6000: add kernel module desciption stefan.ringel
2011-04-04 20:18 ` [PATCH 5/5] tm6000: add CARDLIST stefan.ringel
2011-04-19 21:21 ` [PATCH 1/5] tm6000: add mts parameter Mauro Carvalho Chehab
2011-04-20  8:14   ` Stefan Ringel
2011-04-20 12:37     ` Mauro Carvalho Chehab
2011-04-20 14:19       ` Stefan Ringel
2011-04-20 15:17         ` Mauro Carvalho Chehab
2011-04-20 15:27           ` Stefan Ringel
2011-04-20 16:16             ` Mauro Carvalho Chehab

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=4DADFD31.1010200@redhat.com \
    --to=mchehab@redhat.com \
    --cc=d.belimov@gmail.com \
    --cc=linux-media@vger.kernel.org \
    --cc=stefan.ringel@arcor.de \
    /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.