Re: [PATCH] Input: move name/timer init to input_alloc_dev()

2013-10-19 Thread David Herrmann
ping On Wed, Oct 2, 2013 at 6:27 PM, David Herrmann wrote: > We want to allow drivers to call input_event() at any time after the > device got allocated. This means input_event() and input_register_device() > must be allowed to run in parallel. > > The only conflicting calls in input_register_dev

[PATCH] Input: move name/timer init to input_alloc_dev()

2013-10-02 Thread David Herrmann
We want to allow drivers to call input_event() at any time after the device got allocated. This means input_event() and input_register_device() must be allowed to run in parallel. The only conflicting calls in input_register_device() are init_timer() and dev_set_name(). Both can safely be moved to