diff options
Diffstat (limited to 'drivers/hid/hid-samsung.c')
-rw-r--r-- | drivers/hid/hid-samsung.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/hid/hid-samsung.c b/drivers/hid/hid-samsung.c index 8771bfae02f5..15f3c0492450 100644 --- a/drivers/hid/hid-samsung.c +++ b/drivers/hid/hid-samsung.c | |||
@@ -52,15 +52,14 @@ static int samsung_probe(struct hid_device *hdev, | |||
52 | { | 52 | { |
53 | int ret; | 53 | int ret; |
54 | 54 | ||
55 | hdev->quirks |= HID_QUIRK_HIDDEV | HID_QUIRK_IGNORE_HIDINPUT; | ||
56 | |||
57 | ret = hid_parse(hdev); | 55 | ret = hid_parse(hdev); |
58 | if (ret) { | 56 | if (ret) { |
59 | dev_err(&hdev->dev, "parse failed\n"); | 57 | dev_err(&hdev->dev, "parse failed\n"); |
60 | goto err_free; | 58 | goto err_free; |
61 | } | 59 | } |
62 | 60 | ||
63 | ret = hid_hw_start(hdev); | 61 | ret = hid_hw_start(hdev, (HID_CONNECT_DEFAULT & ~HID_CONNECT_HIDINPUT) | |
62 | HID_CONNECT_HIDDEV_FORCE); | ||
64 | if (ret) { | 63 | if (ret) { |
65 | dev_err(&hdev->dev, "hw start failed\n"); | 64 | dev_err(&hdev->dev, "hw start failed\n"); |
66 | goto err_free; | 65 | goto err_free; |