From patchwork Thu Apr 8 21:34:22 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mauro Carvalho Chehab X-Patchwork-Id: 91514 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.3/8.14.3) with ESMTP id o38LYSUA026099 for ; Thu, 8 Apr 2010 21:34:28 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759140Ab0DHVe1 (ORCPT ); Thu, 8 Apr 2010 17:34:27 -0400 Received: from mx1.redhat.com ([209.132.183.28]:57019 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1759131Ab0DHVe0 (ORCPT ); Thu, 8 Apr 2010 17:34:26 -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 o38LYQE3031378 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 8 Apr 2010 17:34:26 -0400 Received: from [10.11.10.98] (vpn-10-98.rdu.redhat.com [10.11.10.98]) by int-mx03.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o38LYMG5016517 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 8 Apr 2010 17:34:25 -0400 Message-ID: <4BBE4BDE.80500@redhat.com> Date: Thu, 08 Apr 2010 18:34:22 -0300 From: Mauro Carvalho Chehab User-Agent: Thunderbird 2.0.0.22 (X11/20090609) MIME-Version: 1.0 To: linux-input@vger.kernel.org, Linux Media Mailing List Subject: Re: [PATCH 8/8] V4L/DVB: ir-core: move subsystem internal calls to ir-core-priv.h References: <20100408163716.70862743@pedra> In-Reply-To: <20100408163716.70862743@pedra> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.16 Sender: linux-input-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter.kernel.org [140.211.167.41]); Thu, 08 Apr 2010 21:34:28 +0000 (UTC) diff --git a/drivers/media/IR/ir-core-priv.h b/drivers/media/IR/ir-core-priv.h index ab785bc..8d97d6c 100644 --- a/drivers/media/IR/ir-core-priv.h +++ b/drivers/media/IR/ir-core-priv.h @@ -62,8 +62,6 @@ struct ir_raw_event_ctrl { u32 ir_g_keycode_from_table(struct input_dev *input_dev, u32 scancode); -void ir_repeat(struct input_dev *dev); -void ir_keydown(struct input_dev *dev, int scancode, u8 toggle); /* * Routines from ir-sysfs.c - Meant to be called only internally inside diff --git a/include/media/ir-core.h b/include/media/ir-core.h index 40b6250..ab3bd30 100644 --- a/include/media/ir-core.h +++ b/include/media/ir-core.h @@ -122,6 +122,9 @@ static inline int ir_input_register(struct input_dev *dev, void ir_input_unregister(struct input_dev *input_dev); +void ir_repeat(struct input_dev *dev); +void ir_keydown(struct input_dev *dev, int scancode, u8 toggle); + /* From ir-raw-event.c */ void ir_raw_event_handle(struct input_dev *input_dev);