Skip to content

Commit

Permalink
HID: fix dropped device-specific quirks
Browse files Browse the repository at this point in the history
Device-specific quirks are set up correctly in their respective vendor-specific
driver, then get overwritten in usbhid_parse().

This is only issue for device-specific NOGET quirks being set by driver for a
few devices out there.

Signed-off-by: Zoltan Karcagi <zkr@freemail.hu>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
  • Loading branch information
Zoltan Karcagi authored and Jiri Kosina committed May 11, 2009
1 parent b4348f3 commit f520899
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/hid/usbhid/hid-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -898,7 +898,7 @@ static int usbhid_parse(struct hid_device *hid)
goto err;
}

hid->quirks = quirks;
hid->quirks |= quirks;

return 0;
err:
Expand Down

0 comments on commit f520899

Please sign in to comment.