Commit d7b65475 authored by Alexander Viro's avatar Alexander Viro Committed by Linus Torvalds

[PATCH] fix for drivers/input/input.c

Fix lost argument to "connect()"
parent 717f4eba
......@@ -472,7 +472,7 @@ void input_register_device(struct input_dev *dev)
while (handler) {
if ((id = input_match_device(handler->id_table, dev)))
if ((handle = handler->connect(handler, dev)))
if ((handle = handler->connect(handler, dev, id)))
input_link_handle(handle);
handler = handler->next;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment