From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mx1.redhat.com ([209.132.183.28]:35861 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1759579Ab0FPUz1 (ORCPT ); Wed, 16 Jun 2010 16:55:27 -0400 Received: from int-mx03.intmail.prod.int.phx2.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.16]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o5GKtRjM003238 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 16 Jun 2010 16:55:27 -0400 Received: from ihatethathostname.lab.bos.redhat.com (ihatethathostname.lab.bos.redhat.com [10.16.43.238]) by int-mx03.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o5GKtQmx016342 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Wed, 16 Jun 2010 16:55:26 -0400 Received: from ihatethathostname.lab.bos.redhat.com (ihatethathostname.lab.bos.redhat.com [127.0.0.1]) by ihatethathostname.lab.bos.redhat.com (8.14.4/8.14.3) with ESMTP id o5GKtPcL018749 for ; Wed, 16 Jun 2010 16:55:25 -0400 Received: (from jarod@localhost) by ihatethathostname.lab.bos.redhat.com (8.14.4/8.14.4/Submit) id o5GKtPjk018747 for linux-media@vger.kernel.org; Wed, 16 Jun 2010 16:55:25 -0400 Date: Wed, 16 Jun 2010 16:55:25 -0400 From: Jarod Wilson To: linux-media@vger.kernel.org Subject: [PATCH 1/2] IR: add tx callbacks to ir-core Message-ID: <20100616205525.GA18723@redhat.com> References: <20100616205044.GA18486@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20100616205044.GA18486@redhat.com> Sender: linux-media-owner@vger.kernel.org List-ID: Signed-off-by: Jarod Wilson --- include/media/ir-core.h | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/include/media/ir-core.h b/include/media/ir-core.h index ad1303f..9b957af 100644 --- a/include/media/ir-core.h +++ b/include/media/ir-core.h @@ -47,15 +47,21 @@ enum rc_driver_type { * is opened. * @close: callback to allow drivers to disable polling/irq when IR input device * is opened. + * @s_tx_mask: set transmitter mask (for devices with multiple tx outputs) + * @s_tx_carrier: set transmit carrier frequency + * @tx_ir: transmit IR */ struct ir_dev_props { enum rc_driver_type driver_type; unsigned long allowed_protos; u32 scanmask; - void *priv; + void *priv; int (*change_protocol)(void *priv, u64 ir_type); int (*open)(void *priv); void (*close)(void *priv); + int (*s_tx_mask)(void *priv, u32 mask); + int (*s_tx_carrier)(void *priv, u32 carrier); + int (*tx_ir)(void *priv, const char *buf, u32 n); }; struct ir_input_dev { -- 1.6.5.2 -- Jarod Wilson jarod@redhat.com