Update of /cvsroot/linuxconsole/ruby/linux/drivers/input
In directory usw-pr-cvs1:/tmp/cvs-serv10580/linux/drivers/input
Modified Files:
evbug.c
Removed Files:
Config.help Config.in Makefile evdev.c input.c joydev.c
keybdev.c mousedev.c power.c tsdev.c
Log Message:
Syned to 2.5.25
Index: evbug.c
===================================================================
RCS file: /cvsroot/linuxconsole/ruby/linux/drivers/input/evbug.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- evbug.c 25 Sep 2001 10:12:07 -0000 1.10
+++ evbug.c 10 Jul 2002 18:08:03 -0000 1.11
@@ -37,6 +37,8 @@
MODULE_DESCRIPTION("Input driver event debug module");
MODULE_LICENSE("GPL");
+static char evbug_name[] = "evbug";
+
static void evbug_event(struct input_handle *handle, unsigned int type, unsigned int code, int value)
{
printk(KERN_DEBUG "evbug.c: Event. Dev: %s, Type: %d, Code: %d, Value: %d\n", handle->dev->phys, type, code, value);
@@ -52,6 +54,7 @@
handle->dev = dev;
handle->handler = handler;
+ handle->name = evbug_name;
input_open_device(handle);
--- Config.help DELETED ---
--- Config.in DELETED ---
--- Makefile DELETED ---
--- evdev.c DELETED ---
--- input.c DELETED ---
--- joydev.c DELETED ---
--- keybdev.c DELETED ---
--- mousedev.c DELETED ---
--- power.c DELETED ---
--- tsdev.c DELETED ---
|