lkml.org 
[lkml]   [2015]   [Feb]   [3]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [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
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/


\
 
 \ /
  Last update: 2015-02-03 11:41    [W:1.960 / U:0.024 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site