From patchwork Wed May 23 00:27:50 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Katsuhiro Suzuki X-Patchwork-Id: 49832 Received: from vger.kernel.org ([209.132.180.67]) by www.linuxtv.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fLHdk-0006Ks-1r; Wed, 23 May 2018 00:28:28 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753642AbeEWA17 (ORCPT + 1 other); Tue, 22 May 2018 20:27:59 -0400 Received: from mx.socionext.com ([202.248.49.38]:41428 "EHLO mx.socionext.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753571AbeEWA14 (ORCPT ); Tue, 22 May 2018 20:27:56 -0400 Received: from unknown (HELO iyokan-ex.css.socionext.com) ([172.31.9.54]) by mx.socionext.com with ESMTP; 23 May 2018 09:27:53 +0900 Received: from mail.mfilter.local (m-filter-1 [10.213.24.61]) by iyokan-ex.css.socionext.com (Postfix) with ESMTP id 16757600E8; Wed, 23 May 2018 09:27:54 +0900 (JST) Received: from 172.31.9.53 (172.31.9.53) by m-FILTER with ESMTP; Wed, 23 May 2018 09:27:54 +0900 Received: from yuzu.css.socionext.com (yuzu [172.31.8.45]) by iyokan.css.socionext.com (Postfix) with ESMTP id AB28E403A6; Wed, 23 May 2018 09:27:53 +0900 (JST) Received: from aegis.e01.socionext.com (unknown [10.213.134.210]) by yuzu.css.socionext.com (Postfix) with ESMTP id 7890D12014C; Wed, 23 May 2018 09:27:53 +0900 (JST) From: Katsuhiro Suzuki To: Abylay Ospan , Mauro Carvalho Chehab , linux-media@vger.kernel.org Cc: Masami Hiramatsu , Jassi Brar , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Katsuhiro Suzuki Subject: [PATCH v3 2/2] media: helene: support IF frequency of ISDB-S Date: Wed, 23 May 2018 09:27:50 +0900 Message-Id: <20180523002750.27136-2-suzuki.katsuhiro@socionext.com> X-Mailer: git-send-email 2.17.0 In-Reply-To: <20180523002750.27136-1-suzuki.katsuhiro@socionext.com> References: <20180523002750.27136-1-suzuki.katsuhiro@socionext.com> Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org This patch enhances maximum IF frequency to 2.072GHz of this tuner for supporting ISDB-S in Japan. Maimum RF center frequency of ISDB-S for right-handed circularly polarized. BSAT BS-23 12.14944GHz N-SAT-110 ND-24 12.731GHz Local frequency of BS/CS converter is typically 10.678GHz. --- Changes since v2: - Newly added Signed-off-by: Katsuhiro Suzuki --- drivers/media/dvb-frontends/helene.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/media/dvb-frontends/helene.c b/drivers/media/dvb-frontends/helene.c index 04033f0c278b..7d02a9ea7d95 100644 --- a/drivers/media/dvb-frontends/helene.c +++ b/drivers/media/dvb-frontends/helene.c @@ -874,7 +874,7 @@ static const struct dvb_tuner_ops helene_tuner_ops_s = { .info = { .name = "Sony HELENE Sat tuner", .frequency_min = 500000, - .frequency_max = 2500000, + .frequency_max = 2072000000, .frequency_step = 1000, }, .init = helene_init, @@ -888,7 +888,7 @@ static const struct dvb_tuner_ops helene_tuner_ops = { .info = { .name = "Sony HELENE Sat/Ter tuner", .frequency_min = 500000, - .frequency_max = 1200000000, + .frequency_max = 2072000000, .frequency_step = 1000, }, .init = helene_init,