diff mbox series

[RESEND] media: helene: fix tuning frequency of satellite

Message ID 20180529010640.18604-1-suzuki.katsuhiro@socionext.com
State New
Headers show
Series [RESEND] media: helene: fix tuning frequency of satellite | expand

Commit Message

Katsuhiro Suzuki May 29, 2018, 1:06 a.m. UTC
This patch fixes tuning frequency of satellite to kHz. That as same
as terrestrial one.

Signed-off-by: Katsuhiro Suzuki <suzuki.katsuhiro@socionext.com>

---
 drivers/media/dvb-frontends/helene.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
2.17.0

Comments

Katsuhiro Suzuki June 14, 2018, 7:27 a.m. UTC | #1
Hello all,

This patch is wrong, I got a mistake.

DTV_FREQUENCY for satellite delivery systems, the frequency is in 'kHz' not 'Hz',
so original code is correct. 

Please forget this patch. Sorry for confusing...


Regards,
--
Katsuhiro Suzuki

> -----Original Message-----

> From: Katsuhiro Suzuki <suzuki.katsuhiro@socionext.com>

> Sent: Tuesday, May 29, 2018 10:07 AM

> To: Abylay Ospan <aospan@netup.ru>; Mauro Carvalho Chehab

> <mchehab+samsung@kernel.org>; linux-media@vger.kernel.org

> Cc: Masami Hiramatsu <masami.hiramatsu@linaro.org>; Jassi Brar

> <jaswinder.singh@linaro.org>; linux-arm-kernel@lists.infradead.org;

> linux-kernel@vger.kernel.org; Suzuki, Katsuhiro/鈴木 勝博

> <suzuki.katsuhiro@socionext.com>

> Subject: [RESEND PATCH] media: helene: fix tuning frequency of satellite

> 

> This patch fixes tuning frequency of satellite to kHz. That as same

> as terrestrial one.

> 

> Signed-off-by: Katsuhiro Suzuki <suzuki.katsuhiro@socionext.com>

> ---

>  drivers/media/dvb-frontends/helene.c | 2 +-

>  1 file changed, 1 insertion(+), 1 deletion(-)

> 

> diff --git a/drivers/media/dvb-frontends/helene.c

> b/drivers/media/dvb-frontends/helene.c

> index 04033f0c278b..0a4f312c4368 100644

> --- a/drivers/media/dvb-frontends/helene.c

> +++ b/drivers/media/dvb-frontends/helene.c

> @@ -523,7 +523,7 @@ static int helene_set_params_s(struct dvb_frontend *fe)

>  	enum helene_tv_system_t tv_system;

>  	struct dtv_frontend_properties *p = &fe->dtv_property_cache;

>  	struct helene_priv *priv = fe->tuner_priv;

> -	int frequencykHz = p->frequency;

> +	int frequencykHz = p->frequency / 1000;

>  	uint32_t frequency4kHz = 0;

>  	u32 symbol_rate = p->symbol_rate/1000;

> 

> --

> 2.17.0
diff mbox series

Patch

diff --git a/drivers/media/dvb-frontends/helene.c b/drivers/media/dvb-frontends/helene.c
index 04033f0c278b..0a4f312c4368 100644
--- a/drivers/media/dvb-frontends/helene.c
+++ b/drivers/media/dvb-frontends/helene.c
@@ -523,7 +523,7 @@  static int helene_set_params_s(struct dvb_frontend *fe)
 	enum helene_tv_system_t tv_system;
 	struct dtv_frontend_properties *p = &fe->dtv_property_cache;
 	struct helene_priv *priv = fe->tuner_priv;
-	int frequencykHz = p->frequency;
+	int frequencykHz = p->frequency / 1000;
 	uint32_t frequency4kHz = 0;
 	u32 symbol_rate = p->symbol_rate/1000;