Can you try this patch and let me know if it works or not?
thanks,
greg k-h
--- a/drivers/usb/input/hiddev.c Sun May 4 23:49:54 2003
+++ b/drivers/usb/input/hiddev.c Mon May 5 21:23:42 2003
@@ -714,9 +714,9 @@
hiddev->hid = hid;
hiddev->exist = 1;
- sprintf(devfs_name, "usb/hid/hiddev%d", minor);
+ sprintf(devfs_name, "usb/hid/hiddev%d", minor - HIDDEV_MINOR_BASE);
devfs_register(NULL, devfs_name, 0,
- USB_MAJOR, minor + HIDDEV_MINOR_BASE,
+ USB_MAJOR, minor,
S_IFCHR | S_IRUGO | S_IWUSR, &hiddev_fops, NULL);
hid->minor = minor;
hid->hiddev = hiddev;
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/