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: 10419895 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id F1B4D600CC for ; Wed, 23 May 2018 00:28:27 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id E2E9428DAD for ; Wed, 23 May 2018 00:28:27 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id D7C6828DC3; Wed, 23 May 2018 00:28:27 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00, MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=unavailable version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 7D1C928DAD for ; Wed, 23 May 2018 00:28:27 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753642AbeEWA17 (ORCPT ); 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 X-Virus-Scanned: ClamAV using ClamSMTP 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,