From patchwork Thu Jan 29 22:09:37 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Igor M. Liplianin" X-Patchwork-Id: 453 Return-path: Envelope-to: mchehab@infradead.org Delivery-date: Thu, 29 Jan 2009 23:42:46 +0000 Received: from vger.kernel.org ([209.132.176.167]) by bombadil.infradead.org with esmtp (Exim 4.69 #1 (Red Hat Linux)) id 1LSgX0-00052H-CC for mchehab@infradead.org; Thu, 29 Jan 2009 23:42:46 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757309AbZA2Xmg (ORCPT ); Thu, 29 Jan 2009 18:42:36 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753533AbZA2Xmf (ORCPT ); Thu, 29 Jan 2009 18:42:35 -0500 Received: from mail.tut.by ([195.137.160.40]:37616 "EHLO speedy.tutby.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1759846AbZA2Xme (ORCPT ); Thu, 29 Jan 2009 18:42:34 -0500 Received: from [213.184.224.34] (account liplianin@tut.by HELO dynamic-vpdn-128-11-87.telecom.by) by speedy.tutby.com (CommuniGate Pro SMTP 5.1.12) with ESMTPA id 140012405; Fri, 30 Jan 2009 00:09:43 +0200 From: "Igor M. Liplianin" To: Mika Laitio , gimli , linux-media@vger.kernel.org Subject: Re: [linux-dvb] Broken Tuning on Wintv Nova HD S2 Date: Fri, 30 Jan 2009 00:09:37 +0200 User-Agent: KMail/1.9.9 References: <497F7117.9000607@dark-green.com> <200901292242.55298.liplianin@tut.by> In-Reply-To: MIME-Version: 1.0 Message-Id: <200901300009.37576.liplianin@tut.by> Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org ? ????????? ?? 29 January 2009 23:36:43 Mika Laitio ???????(?): > >> Edgar (gimli) Hucek > > > > Does simple patch work ? > > I need your Acked-by :) > > Hi, I have only saw one version of your patch in mailing list, > did you send the simpler version somewhere? > > Mika Sorry, send it to Edgar only. But it is unintentionally. # HG changeset patch # User Igor M. Liplianin # Date 1233253267 -7200 # Node ID 3542d1c1e03add577ce85175327701c552d14856 # Parent 4086371cea7b7f8b461e1a77513274aa43583c8c Bug fix: Restore HVR-4000 tuning. From: Igor M. Liplianin Some cards uses cx24116 LNB_DC pin for LNB power control, some not uses, some uses it different way, like HVR-4000. Signed-off-by: Igor M. Liplianin diff -r 4086371cea7b -r 3542d1c1e03a linux/drivers/media/dvb/frontends/cx24116.c --- a/linux/drivers/media/dvb/frontends/cx24116.c Sat Jan 17 17:23:31 2009 +0200 +++ b/linux/drivers/media/dvb/frontends/cx24116.c Thu Jan 29 20:21:07 2009 +0200 @@ -1184,7 +1184,12 @@ if (ret != 0) return ret; - return cx24116_diseqc_init(fe); + ret = cx24116_diseqc_init(fe); + if (ret != 0) + return ret; + + /* HVR-4000 needs this */ + return cx24116_set_voltage(fe, SEC_VOLTAGE_13); } /*