The patch titled hid: add QUIRK_HIDDEV for Belkin Flip KVM has been removed from the -mm tree. Its filename was hid-add-quirk_hiddev-for-belkin-flip-kvm.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: hid: add QUIRK_HIDDEV for Belkin Flip KVM From: Daniel P. Engel <dengel@xxxxxxxxxxxxxxxxx> Add HID_QUIRK_HIDDEV for the Belkin Flip USB KVM to the hid-core blacklist table. The Belkin Flip USB KVM provides for software control of switching via a HID class interface. It overloads three HID LED usages, two of which aren't mapped in the ev_dev input subsection, and which it doesn't make sense to map. In order to force the creation of a hiddev device for controlling the Flip, this quirk flag is needed. Signed-off-by: Daniel P. Engel <dengel@xxxxxxxxxxxxxxxxx> Cc: Dmitry Torokhov <dtor@xxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Cc: Jiri Kosina <jikos@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/hid/usbhid/hid-core.c | 6 ++++++ 1 file changed, 6 insertions(+) diff -puN drivers/hid/usbhid/hid-core.c~hid-add-quirk_hiddev-for-belkin-flip-kvm drivers/hid/usbhid/hid-core.c --- a/drivers/hid/usbhid/hid-core.c~hid-add-quirk_hiddev-for-belkin-flip-kvm +++ a/drivers/hid/usbhid/hid-core.c @@ -304,6 +304,9 @@ static const struct hid_blacklist { { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_RECEIVER, HID_QUIRK_BAD_RELATIVE_KEYS }, + { USB_VENDOR_ID_BELKIN, USB_DEVICE_ID_FLIP_KVM, HID_QUIRK_HIDDEV }, + + { USB_VENDOR_ID_AASHIMA, USB_DEVICE_ID_AASHIMA_GAMEPAD, HID_QUIRK_BADPAD }, { USB_VENDOR_ID_AASHIMA, USB_DEVICE_ID_AASHIMA_PREDATOR, HID_QUIRK_BADPAD }, { USB_VENDOR_ID_ALPS, USB_DEVICE_ID_IBM_GAMEPAD, HID_QUIRK_BADPAD }, @@ -763,6 +766,9 @@ static void hid_irq_out(struct urb *urb) wake_up(&hid->wait); } +#define USB_VENDOR_ID_BELKIN 0x050d +#define USB_DEVICE_ID_FLIP_KVM 0x3201 + /* * Control pipe completion handler. */ _ Patches currently in -mm which might be from dengel@xxxxxxxxxxxxxxxxx are git-hid.patch hid-add-two-led-codes-to-hid-input-mapping.patch hid-add-quirk_hiddev-for-belkin-flip-kvm.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html