From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S261987AbVHCCXI (ORCPT ); Tue, 2 Aug 2005 22:23:08 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S261989AbVHCCXI (ORCPT ); Tue, 2 Aug 2005 22:23:08 -0400 Received: from koto.vergenet.net ([210.128.90.7]:26515 "EHLO koto.vergenet.net") by vger.kernel.org with ESMTP id S261987AbVHCCXH (ORCPT ); Tue, 2 Aug 2005 22:23:07 -0400 Date: Wed, 3 Aug 2005 14:03:16 +0900 From: Horms To: Marcelo Tosatti , Michael Krufky , Mauro Carvalho Chehab , Chris Wright , Greg Kroah-Hartman , debian-kernel@lists.debian.org, linux-kernel@vger.kernel.org Subject: Re: [Patch] v4l cx88 hue offset fix Message-ID: <20050803050315.GB29715@debian.org> Mail-Followup-To: Marcelo Tosatti , Michael Krufky , Mauro Carvalho Chehab , Chris Wright , Greg Kroah-Hartman , debian-kernel@lists.debian.org, linux-kernel@vger.kernel.org References: <20050802071959.GB22793@verge.net.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050802071959.GB22793@verge.net.au> X-Cluestick: seven User-Agent: Mutt/1.5.9i Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Aug 02, 2005 at 04:20:00PM +0900, Horms wrote: > Hi Marcelo, > > Another fix from 2.6.12.3 that seems approprite for 2.4. > Should apply cleanly to your tree. Please ignore this. I sent the wrong patch. I don't think thie cx88 driver is in 2.4 at all. > Signed-off-by: Horms > > From: Michael Krufky > Date: Thu, 30 Jun 2005 20:06:41 +0000 (-0400) > Subject: [PATCH] v4l cx88 hue offset fix > X-Git-Tag: v2.6.12.3 > X-Git-Url: http://www.kernel.org/git/?p=linux/kernel/git/gregkh/linux-2.6.12.y.git;a=commitdiff;h=aebaaf4060dd0db163694da8e4ab7ba86add57b9 > > [PATCH] v4l cx88 hue offset fix > > Changed hue offset to 128 to correct behavior in cx88 cards. Previously, > setting 0% or 100% hue was required to avoid blue/green people on screen. > Now, 50% Hue means no offset, just like bt878 stuff. > > Signed-off-by: Michael Krufky > Signed-off-by: Mauro Carvalho Chehab > Signed-off-by: Chris Wright > Signed-off-by: Greg Kroah-Hartman > --- > > Backported to Debian's kernel-source-2.6.8 by dann frazier > > --- a/drivers/media/video/cx88/cx88-video.c > +++ b/drivers/media/video/cx88/cx88-video.c > @@ -261,7 +261,7 @@ static struct cx88_ctrl cx8800_ctls[] = > .default_value = 0, > .type = V4L2_CTRL_TYPE_INTEGER, > }, > - .off = 0, > + .off = 128, > .reg = MO_HUE, > .mask = 0x00ff, > .shift = 0,