From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from zone0.gcu-squad.org ([212.85.147.21]:47704 "EHLO services.gcu-squad.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750757AbZGSTWU (ORCPT ); Sun, 19 Jul 2009 15:22:20 -0400 Date: Sun, 19 Jul 2009 21:22:06 +0200 From: Jean Delvare To: Andy Walls Cc: linux-media@vger.kernel.org, Jarod Wilson , Mark Lord , Mike Isely , Hans Verkuil , Mauro Carvalho Chehab , Janne Grunau Subject: Re: [PATCH 3/3] ir-kbd-i2c: Add support for Z8F0811/Hauppage IR transceivers Message-ID: <20090719212206.593f9eeb@hyperion.delvare> In-Reply-To: <1247863795.10066.36.camel@palomino.walls.org> References: <1247862585.10066.16.camel@palomino.walls.org> <1247863795.10066.36.camel@palomino.walls.org> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-media-owner@vger.kernel.org List-ID: Hi Andy, On Fri, 17 Jul 2009 16:49:55 -0400, Andy Walls wrote: > This patch adds support for Zilog Z8F0811 IR transceiver chips on > CX2341[68] based boards to ir-kbd-i2c for both the old i2c binding model > and the new i2c binding model. > > Regards, > Andy > > diff -r d754a2d5a376 linux/drivers/media/video/ir-kbd-i2c.c > --- a/linux/drivers/media/video/ir-kbd-i2c.c Wed Jul 15 07:28:02 2009 -0300 > +++ b/linux/drivers/media/video/ir-kbd-i2c.c Fri Jul 17 16:05:28 2009 -0400 > @@ -442,9 +442,11 @@ > case 0x47: > case 0x71: > case 0x2d: > - if (adap->id == I2C_HW_B_CX2388x) { > + if (adap->id == I2C_HW_B_CX2388x || > + adap->id == I2C_HW_B_CX2341X) { > /* Handled by cx88-input */ > - name = "CX2388x remote"; > + name = adap->id == I2C_HW_B_CX2341X ? "CX2341x remote" > + : "CX2388x remote"; > ir_type = IR_TYPE_RC5; > ir->get_key = get_key_haup_xvr; > if (hauppauge == 1) { > @@ -697,7 +726,8 @@ > static const struct i2c_device_id ir_kbd_id[] = { > /* Generic entry for any IR receiver */ > { "ir_video", 0 }, > - /* IR device specific entries could be added here */ > + /* IR device specific entries should be added here */ > + { "ir_rx_z8f0811_haup", 0 }, > { } > }; > Yes, looks good. -- Jean Delvare