Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932160AbWCUDeq (ORCPT ); Mon, 20 Mar 2006 22:34:46 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932269AbWCUDeq (ORCPT ); Mon, 20 Mar 2006 22:34:46 -0500 Received: from thing.hostingexpert.com ([67.15.235.34]:22726 "EHLO thing.hostingexpert.com") by vger.kernel.org with ESMTP id S932160AbWCUDep (ORCPT ); Mon, 20 Mar 2006 22:34:45 -0500 Message-ID: <441F7448.2080602@m1k.net> Date: Mon, 20 Mar 2006 22:34:32 -0500 From: Michael Krufky User-Agent: Debian Thunderbird 1.0.7 (X11/20051017) X-Accept-Language: en-us, en MIME-Version: 1.0 To: stable@kernel.org CC: lkml , Mauro Carvalho Chehab , v4l-dvb maintainer list , Hans Verkuil Subject: [2.6.16 STABLE PATCH] V4L/DVB (3324): Fix Samsung tuner frequency ranges Content-Type: multipart/mixed; boundary="------------050803000908080306040106" X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - thing.hostingexpert.com X-AntiAbuse: Original Domain - vger.kernel.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - m1k.net X-Source: X-Source-Args: X-Source-Dir: Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1803 Lines: 50 This is a multi-part message in MIME format. --------------050803000908080306040106 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit This is a critical patch that didn't get pulled in time for 2.6.16 Please apply this to 2.6.16.1 --------------050803000908080306040106 Content-Type: text/x-patch; name="Fix_Samsung_tuner_frequency_ranges.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="Fix_Samsung_tuner_frequency_ranges.patch" From: Hans Verkuil Date: Mon, 6 Feb 2006 21:52:24 +0000 (+0200) Subject: V4L/DVB (3324): Fix Samsung tuner frequency ranges X-Git-Url: http://www.kernel.org/git/?p=linux/kernel/git/mchehab/v4l-dvb.git;a=commitdiff;h=df821f758c37dce41fbef0d20932909332619f04 V4L/DVB (3324): Fix Samsung tuner frequency ranges Forgot to take the NTSC frequency offset into account. Signed-off-by: Hans Verkuil Signed-off-by: Mauro Carvalho Chehab Signed-off-by: Michael Krufky --- --- linux-2.6.16.orig/drivers/media/video/tuner-types.c +++ linux-2.6.16/drivers/media/video/tuner-types.c @@ -1087,8 +1087,8 @@ /* ------------ TUNER_SAMSUNG_TCPN_2121P30A - Samsung NTSC ------------ */ static struct tuner_range tuner_samsung_tcpn_2121p30a_ntsc_ranges[] = { - { 16 * 175.75 /*MHz*/, 0x01, }, - { 16 * 410.25 /*MHz*/, 0x02, }, + { 16 * 130.00 /*MHz*/, 0x01, }, + { 16 * 364.50 /*MHz*/, 0x02, }, { 16 * 999.99 , 0x08, }, }; --------------050803000908080306040106-- - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/