aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/hid/hid-ntrig.c
diff options
context:
space:
mode:
authorRafi Rubin <rafi@seas.upenn.edu>2011-03-09 23:33:51 -0500
committerJiri Kosina <jkosina@suse.cz>2011-03-10 11:37:55 +0100
commit6638dedaec6e3d32654f0ac5786f5d32963e208b (patch)
tree581bc9426e37c20bbbaa979163c2b0d00ffe5356 /drivers/hid/hid-ntrig.c
parentHID: ntrig don't dereference unclaimed hidinput (diff)
downloadwireguard-linux-6638dedaec6e3d32654f0ac5786f5d32963e208b.tar.xz
wireguard-linux-6638dedaec6e3d32654f0ac5786f5d32963e208b.zip
HID: ntrig: apply NO_INIT_REPORTS quirk
Probing reports does bad things with some ntrig firmwares, better to just leave them alone. Signed-off-by: Rafi Rubin <rafi@seas.upenn.edu> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/hid-ntrig.c')
-rw-r--r--drivers/hid/hid-ntrig.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/hid/hid-ntrig.c b/drivers/hid/hid-ntrig.c
index a93e58ca81ed..f152b5114f05 100644
--- a/drivers/hid/hid-ntrig.c
+++ b/drivers/hid/hid-ntrig.c
@@ -839,7 +839,8 @@ static int ntrig_probe(struct hid_device *hdev, const struct hid_device_id *id)
struct hid_report *report;
if (id->driver_data)
- hdev->quirks |= HID_QUIRK_MULTI_INPUT;
+ hdev->quirks |= HID_QUIRK_MULTI_INPUT
+ | HID_QUIRK_NO_INIT_REPORTS;
nd = kmalloc(sizeof(struct ntrig_data), GFP_KERNEL);
if (!nd) {