public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH] media:dvb-frontends: Change setting of variable interval to the correct values in the function, hd29l2_get_frontend for the switch statement checking the frame header
       [not found] <1422935531-19353-1-git-send-email-xerofoify@gmail.com>
@ 2015-02-03 10:20 ` Antti Palosaari
  0 siblings, 0 replies; only message in thread
From: Antti Palosaari @ 2015-02-03 10:20 UTC (permalink / raw)
  To: Nicholas Krause; +Cc: mchehab, linux-media, linux-kernel

Yet another bad patch. Do not touch whole driver unless you understand 
and can test your patches!

Antti


On 02/03/2015 05:52 AM, Nicholas Krause wrote:
> This changes the switch statement checking the frame header of the pointer,
> c as a pointer to a structure of type,dtv_frontend_properties to set the
> variable,interval correctly in the switch statement for checking the frame
> header as part of this structure pointer,c for this function correctly as
> required by the cases in this switch statement.
>
> Signed-off-by: Nicholas Krause <xerofoify@gmail.com>
> ---
>   drivers/media/dvb-frontends/hd29l2.c | 6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/media/dvb-frontends/hd29l2.c b/drivers/media/dvb-frontends/hd29l2.c
> index d7b9d54..3d1a013 100644
> --- a/drivers/media/dvb-frontends/hd29l2.c
> +++ b/drivers/media/dvb-frontends/hd29l2.c
> @@ -635,15 +635,15 @@ static int hd29l2_get_frontend(struct dvb_frontend *fe)
>   	switch ((buf[1] >> 0) & 0x03) {
>   	case 0: /* PN945 */
>   		str_guard_interval = "PN945";
> -		c->guard_interval = GUARD_INTERVAL_AUTO; /* FIXME */
> +		c->guard_interval = GUARD_INTERVAL_PN945;
>   		break;
>   	case 1: /* PN595 */
>   		str_guard_interval = "PN595";
> -		c->guard_interval = GUARD_INTERVAL_AUTO; /* FIXME */
> +		c->guard_interval = GUARD_INTERVAL_PN595;
>   		break;
>   	case 2: /* PN420 */
>   		str_guard_interval = "PN420";
> -		c->guard_interval = GUARD_INTERVAL_AUTO; /* FIXME */
> +		c->guard_interval = GUARD_INTERVAL_PN420;
>   		break;
>   	default:
>   		str_guard_interval = "?";
>

-- 
http://palosaari.fi/

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2015-02-03 10:20 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <1422935531-19353-1-git-send-email-xerofoify@gmail.com>
2015-02-03 10:20 ` [PATCH] media:dvb-frontends: Change setting of variable interval to the correct values in the function, hd29l2_get_frontend for the switch statement checking the frame header Antti Palosaari

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox