Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753922AbZA2Ial (ORCPT ); Thu, 29 Jan 2009 03:30:41 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754239AbZA2IaF (ORCPT ); Thu, 29 Jan 2009 03:30:05 -0500 Received: from smtp1.linux-foundation.org ([140.211.169.13]:46698 "EHLO smtp1.linux-foundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753607AbZA2IaD (ORCPT ); Thu, 29 Jan 2009 03:30:03 -0500 Date: Thu, 29 Jan 2009 00:29:23 -0800 From: Andrew Morton To: "Henrik Rydberg" Cc: Dmitry Torokhov , linux-input@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 5/6] input: Allow certain EV_ABS events to bypass all filtering Message-Id: <20090129002923.7dc6c6ec.akpm@linux-foundation.org> In-Reply-To: <1233138229-12489-6-git-send-email-rydberg@euromail.se> References: <1233138229-12489-1-git-send-email-rydberg@euromail.se> <1233138229-12489-2-git-send-email-rydberg@euromail.se> <1233138229-12489-3-git-send-email-rydberg@euromail.se> <1233138229-12489-4-git-send-email-rydberg@euromail.se> <1233138229-12489-5-git-send-email-rydberg@euromail.se> <1233138229-12489-6-git-send-email-rydberg@euromail.se> X-Mailer: Sylpheed 2.4.8 (GTK+ 2.12.5; x86_64-redhat-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1668 Lines: 46 On Wed, 28 Jan 2009 11:23:48 +0100 "Henrik Rydberg" wrote: > With the upcoming multi-touch interface as an example, there is > a need to make certain that all reported events actually get passed > to the event handler. This patch equips the input core with the > ability to bypass all filtering for certain EV_ABS events. This patch doesn't include Randy's fix, below. It's unchanged from v1, so I did nothing with this one. From: Randy Dunlap Fix function args build warning: mmotm-2008-1230-1605/drivers/input/input.c:1661: warning: function declaration isn't a prototype Signed-off-by: Randy Dunlap Cc: Dmitry Torokhov Cc: Henrik Rydberg Signed-off-by: Andrew Morton --- drivers/input/input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/input/input.c~es-input-allow-certain-ev_abs-events-to-bypass-all-filtering-fix drivers/input/input.c --- a/drivers/input/input.c~es-input-allow-certain-ev_abs-events-to-bypass-all-filtering-fix +++ a/drivers/input/input.c @@ -1644,7 +1644,7 @@ static const struct file_operations inpu .open = input_open_file, }; -static void __init input_init_abs_bypass() +static void __init input_init_abs_bypass(void) { const unsigned int *p; for (p = input_abs_bypass_init_data; *p; p++) _ -- 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/