aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/hid/hid-input.c6
-rw-r--r--drivers/usb/input/hid-core.c5
-rw-r--r--include/linux/hid.h1
3 files changed, 11 insertions, 1 deletions
diff --git a/drivers/hid/hid-input.c b/drivers/hid/hid-input.c
index c7a6833f6821..33b1126f5e5d 100644
--- a/drivers/hid/hid-input.c
+++ b/drivers/hid/hid-input.c
@@ -816,6 +816,7 @@ int hidinput_connect(struct hid_device *hid)
816 struct hid_input *hidinput = NULL; 816 struct hid_input *hidinput = NULL;
817 struct input_dev *input_dev; 817 struct input_dev *input_dev;
818 int i, j, k; 818 int i, j, k;
819 int max_report_type = HID_OUTPUT_REPORT;
819 820
820 INIT_LIST_HEAD(&hid->inputs); 821 INIT_LIST_HEAD(&hid->inputs);
821 822
@@ -828,7 +829,10 @@ int hidinput_connect(struct hid_device *hid)
828 if (i == hid->maxcollection) 829 if (i == hid->maxcollection)
829 return -1; 830 return -1;
830 831
831 for (k = HID_INPUT_REPORT; k <= HID_OUTPUT_REPORT; k++) 832 if (hid->quirks & HID_QUIRK_SKIP_OUTPUT_REPORTS)
833 max_report_type = HID_INPUT_REPORT;
834
835 for (k = HID_INPUT_REPORT; k <= max_report_type; k++)
832 list_for_each_entry(report, &hid->report_enum[k].report_list, list) { 836 list_for_each_entry(report, &hid->report_enum[k].report_list, list) {
833 837
834 if (!report->maxfield) 838 if (!report->maxfield)
diff --git a/drivers/usb/input/hid-core.c b/drivers/usb/input/hid-core.c
index 2971182bbdf6..1fa42f400176 100644
--- a/drivers/usb/input/hid-core.c
+++ b/drivers/usb/input/hid-core.c
@@ -792,6 +792,9 @@ void usbhid_init_reports(struct hid_device *hid)
792#define USB_VENDOR_ID_IMATION 0x0718 792#define USB_VENDOR_ID_IMATION 0x0718
793#define USB_DEVICE_ID_DISC_STAKKA 0xd000 793#define USB_DEVICE_ID_DISC_STAKKA 0xd000
794 794
795#define USB_VENDOR_ID_PANTHERLORD 0x0810
796#define USB_DEVICE_ID_PANTHERLORD_TWIN_USB_JOYSTICK 0x0001
797
795/* 798/*
796 * Alphabetically sorted blacklist by quirk type. 799 * Alphabetically sorted blacklist by quirk type.
797 */ 800 */
@@ -969,6 +972,8 @@ static const struct hid_blacklist {
969 972
970 { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_USB_RECEIVER, HID_QUIRK_BAD_RELATIVE_KEYS }, 973 { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_USB_RECEIVER, HID_QUIRK_BAD_RELATIVE_KEYS },
971 974
975 { USB_VENDOR_ID_PANTHERLORD, USB_DEVICE_ID_PANTHERLORD_TWIN_USB_JOYSTICK, HID_QUIRK_MULTI_INPUT | HID_QUIRK_SKIP_OUTPUT_REPORTS },
976
972 { 0, 0 } 977 { 0, 0 }
973}; 978};
974 979
diff --git a/include/linux/hid.h b/include/linux/hid.h
index 342b4e639acb..523b8341e791 100644
--- a/include/linux/hid.h
+++ b/include/linux/hid.h
@@ -264,6 +264,7 @@ struct hid_item {
264#define HID_QUIRK_INVERT_HWHEEL 0x00004000 264#define HID_QUIRK_INVERT_HWHEEL 0x00004000
265#define HID_QUIRK_POWERBOOK_ISO_KEYBOARD 0x00008000 265#define HID_QUIRK_POWERBOOK_ISO_KEYBOARD 0x00008000
266#define HID_QUIRK_BAD_RELATIVE_KEYS 0x00010000 266#define HID_QUIRK_BAD_RELATIVE_KEYS 0x00010000
267#define HID_QUIRK_SKIP_OUTPUT_REPORTS 0x00020000
267 268
268/* 269/*
269 * This is the global environment of the parser. This information is 270 * This is the global environment of the parser. This information is