diff options
| author | Alexander Viro <viro@math.psu.edu> | 2002-02-08 02:47:22 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@penguin.transmeta.com> | 2002-02-08 02:47:22 -0800 |
| commit | d7b654751759e2a2e1d49aebf595c12e55ca7b69 (patch) | |
| tree | d6e6c59006ade9499d1bbddb5c31b125a186ae8f | |
| parent | 717f4eba87d2c919e7b7c615f6e4c7e5c4fc2e82 (diff) | |
[PATCH] fix for drivers/input/input.c
Fix lost argument to "connect()"
| -rw-r--r-- | drivers/input/input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/input.c b/drivers/input/input.c index 32349d2c21b4..e80f4a4c8732 100644 --- a/drivers/input/input.c +++ b/drivers/input/input.c @@ -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; } |
