Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 33188
b: refs/heads/master
c: b6d786d
h: refs/heads/master
v: v3
  • Loading branch information
Dmitry Torokhov committed Jul 19, 2006
1 parent 256c316 commit 3fb5fa8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: cb78623517ca08a035a3f69c0ca6d68a0123e649
refs/heads/master: b6d786dbe6fc19b51edd6cf6de84fd65b702c800
5 changes: 4 additions & 1 deletion trunk/drivers/input/input.c
Original file line number Diff line number Diff line change
Expand Up @@ -1056,8 +1056,11 @@ void input_register_handler(struct input_handler *handler)
list_for_each_entry(dev, &input_dev_list, node)
if (!handler->blacklist || !input_match_device(handler->blacklist, dev))
if ((id = input_match_device(handler->id_table, dev)))
if ((handle = handler->connect(handler, dev, id)))
if ((handle = handler->connect(handler, dev, id))) {
input_link_handle(handle);
if (handler->start)
handler->start(handle);
}

input_wakeup_procfs_readers();
}
Expand Down

0 comments on commit 3fb5fa8

Please sign in to comment.