Re: [PATCH] Input: automatically set EV_ABS bit in input_set_abs_params

2014-10-10 Thread Jiri Kosina
On Wed, 8 Oct 2014, Dmitry Torokhov wrote: Let's automatically set EV_ABS bit in device's event type list when calling input_set_abs_params() so that drivers do not have to do it explicitly. These calls are never in a hot paths so we won't lose much time by setting the same bit several

[PATCH] Input: automatically set EV_ABS bit in input_set_abs_params

2014-10-08 Thread Dmitry Torokhov
Let's automatically set EV_ABS bit in device's event type list when calling input_set_abs_params() so that drivers do not have to do it explicitly. These calls are never in a hot paths so we won't lose much time by setting the same bit several times. Signed-off-by: Dmitry Torokhov

Re: [PATCH] Input: automatically set EV_ABS bit in input_set_abs_params

2014-10-08 Thread David Herrmann
Hi On Wed, Oct 8, 2014 at 6:54 PM, Dmitry Torokhov dmitry.torok...@gmail.com wrote: Let's automatically set EV_ABS bit in device's event type list when calling input_set_abs_params() so that drivers do not have to do it explicitly. These calls are never in a hot paths so we won't lose much