Hi, Here's a patch against 2.4.15-pre4 from Brad Hards that fixes a problem with the extra keys on some USB keyboards.
thanks, greg k-h diff --minimal -Nru a/Documentation/Configure.help b/Documentation/Configure.help --- a/Documentation/Configure.help Tue Nov 13 15:36:14 2001 +++ b/Documentation/Configure.help Tue Nov 13 15:36:14 2001 @@ -12494,8 +12494,6 @@ Say Y here if you want to support HID devices (from the USB specification standpoint) that aren't strictly user interface devices, like monitor controls and Uninterruptable Power Supplies. - It is also used for "consumer keys" on multimedia keyboards and - USB speakers. This module supports these devices separately using a separate event interface on /dev/usb/hiddevX (char 180:96 to 180:111). diff --minimal -Nru a/drivers/usb/hid.h b/drivers/usb/hid.h --- a/drivers/usb/hid.h Tue Nov 13 15:36:14 2001 +++ b/drivers/usb/hid.h Tue Nov 13 15:36:14 2001 @@ -363,7 +363,7 @@ #endif -#define IS_INPUT_APPLICATION(a) ((a >= 0x00010000) && (a <= 0x00010008)) +#define IS_INPUT_APPLICATION(a) (((a >= 0x00010000) && (a <= 0x00010008)) || (a == +0x00010080) || ( a == 0x000c0001)) int hid_open(struct hid_device *); void hid_close(struct hid_device *); _______________________________________________ [EMAIL PROTECTED] To unsubscribe, use the last form field at: https://lists.sourceforge.net/lists/listinfo/linux-usb-devel
