From: Andrew Morton Cc: Dmitry Torokhov Signed-off-by: Andrew Morton --- drivers/input/input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/input/input.c~git-input-list_for_each_entry-fix-fix drivers/input/input.c --- a/drivers/input/input.c~git-input-list_for_each_entry-fix-fix +++ a/drivers/input/input.c @@ -243,7 +243,7 @@ void input_release_device(struct input_h list_for_each_entry(h, &handle->dev->h_list, d_node) { if (h->handler->start) - h->handler->start(handle); + h->handler->start(h); } } } _