aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Viro <viro@math.psu.edu>2002-02-08 02:47:22 -0800
committerLinus Torvalds <torvalds@penguin.transmeta.com>2002-02-08 02:47:22 -0800
commitd7b654751759e2a2e1d49aebf595c12e55ca7b69 (patch)
treed6e6c59006ade9499d1bbddb5c31b125a186ae8f
parent717f4eba87d2c919e7b7c615f6e4c7e5c4fc2e82 (diff)
downloadhistory-d7b654751759e2a2e1d49aebf595c12e55ca7b69.tar.gz
[PATCH] fix for drivers/input/input.cv2.5.4-pre5
Fix lost argument to "connect()"
-rw-r--r--drivers/input/input.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/input.c b/drivers/input/input.c
index 32349d2c21b4d..e80f4a4c87327 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;
}