From patchwork Tue Jul 28 06:48:50 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dmitri Belimov X-Patchwork-Id: 1415 Return-path: Envelope-to: mchehab@infradead.org Delivery-date: Tue, 28 Jul 2009 06:56:41 +0000 Received: from bombadil.infradead.org [18.85.46.34] by pedra.chehab.org with IMAP (fetchmail-6.3.6) for (single-drop); Tue, 28 Jul 2009 07:10:43 -0300 (BRT) Received: from vger.kernel.org ([209.132.176.167]) by bombadil.infradead.org with esmtp (Exim 4.69 #1 (Red Hat Linux)) id 1MVgc5-0000VC-CU; Tue, 28 Jul 2009 06:56:41 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752004AbZG1G4i (ORCPT + 1 other); Tue, 28 Jul 2009 02:56:38 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753131AbZG1G4i (ORCPT ); Tue, 28 Jul 2009 02:56:38 -0400 Received: from mail-fx0-f216.google.com ([209.85.220.216]:50121 "EHLO mail-fx0-f216.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752004AbZG1G4i (ORCPT ); Tue, 28 Jul 2009 02:56:38 -0400 X-Greylist: delayed 457 seconds by postgrey-1.27 at vger.kernel.org; Tue, 28 Jul 2009 02:56:37 EDT Received: by fxm12 with SMTP id 12so174685fxm.37 for ; Mon, 27 Jul 2009 23:56:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:subject :message-id:x-mailer:mime-version:content-type; bh=nr7E/8/4YSd7qqe0wJh9Bi9L0DLHqhrZvNWFDTf7MF8=; b=ox9i1YVnR/OwFBBC5JIy1JvasAnGgxDcyAGisQ+OOTBn1TOAu6Svn3Sh4YHytcV88P n+G7tZiw/g/ucmLmpoJRM3FLN3zcydxYrU6QBgiPtqvCyqwABUqMgAFLCgKZ+rl91iUD i39Pq5nbzPFShjGzxndmwi1M1qfA9mPKhZrYE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:subject:message-id:x-mailer:mime-version:content-type; b=jUR0I18TJqKX/RRvgtVSMWbzka/BIuEkJ1lFsLfu9XfEfRbE/eFIpP2VLeCqcMnh4m hAfBQqvCQnUdqPPjiqg8x1FF++4eU8Urnxk+7Yqp9u9mVRJTnT/f2CGXbbQaloVXcGdC tABOkynqfWI+mtocSjIXtjSSOmVqo16755S5M= Received: by 10.103.5.2 with SMTP id h2mr3703010mui.132.1248763738739; Mon, 27 Jul 2009 23:48:58 -0700 (PDT) Received: from glory.loctelecom.ru ([83.234.170.10]) by mx.google.com with ESMTPS id n7sm31354979mue.58.2009.07.27.23.48.55 (version=SSLv3 cipher=RC4-MD5); Mon, 27 Jul 2009 23:48:57 -0700 (PDT) Date: Tue, 28 Jul 2009 16:48:50 +1000 From: Dmitri Belimov To: linux-media@vger.kernel.org, video4linux-list@redhat.com Subject: [PATCH] Fix incorrect type of tuner for the BeholdTV H6 card. Message-ID: <20090728164850.16328d20@glory.loctelecom.ru> X-Mailer: Claws Mail 3.5.0 (GTK+ 2.16.1; i486-pc-linux-gnu) Mime-Version: 1.0 Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org Hi all Define correct tuner in config. Radio now works fine. Signed-off-by: Beholder Intl. Ltd. Dmitry Belimov With my best regards, Dmitry. diff -r f8f134705b65 linux/drivers/media/video/saa7134/saa7134-cards.c --- a/linux/drivers/media/video/saa7134/saa7134-cards.c Fri Jul 24 16:19:39 2009 -0300 +++ b/linux/drivers/media/video/saa7134/saa7134-cards.c Tue Jul 28 14:54:29 2009 +1000 @@ -4900,7 +4900,7 @@ /* Igor Kuznetsov */ .name = "Beholder BeholdTV H6", .audio_clock = 0x00187de7, - .tuner_type = TUNER_PHILIPS_FMD1216ME_MK3, + .tuner_type = TUNER_PHILIPS_FMD1216MEX_MK3, .radio_type = UNSET, .tuner_addr = ADDR_UNSET, .radio_addr = ADDR_UNSET, diff -r f8f134705b65 linux/drivers/media/video/saa7134/saa7134-dvb.c --- a/linux/drivers/media/video/saa7134/saa7134-dvb.c Fri Jul 24 16:19:39 2009 -0300 +++ b/linux/drivers/media/video/saa7134/saa7134-dvb.c Tue Jul 28 14:54:29 2009 +1000 @@ -1461,7 +1461,7 @@ if (fe0->dvb.frontend) { dvb_attach(simple_tuner_attach, fe0->dvb.frontend, &dev->i2c_adap, 0x61, - TUNER_PHILIPS_FMD1216ME_MK3); + TUNER_PHILIPS_FMD1216MEX_MK3); } break; case SAA7134_BOARD_AVERMEDIA_A700_PRO: Signed-off-by: Beholder Intl. Ltd. Dmitry Belimov