diff options
author | Benjamin Tissoires <benjamin.tissoires@redhat.com> | 2014-04-09 11:01:34 -0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2014-04-09 17:13:34 +0200 |
commit | b89f991af08244121e69a3ee90cfa397598cf3ab (patch) | |
tree | 75ecfd3abbd6345094924d1e5ea10a82913aa2f6 /drivers/hid/hid-rmi.c | |
parent | 9fb6bf02e3ad04c20edb8e46536ce3eeda32c736 (diff) | |
download | op-kernel-dev-b89f991af08244121e69a3ee90cfa397598cf3ab.zip op-kernel-dev-b89f991af08244121e69a3ee90cfa397598cf3ab.tar.gz |
HID: rmi: do not stop the device at the end of probe
Well, this is embarrassing, if the device is stopped at the end of probe,
we get into big trouble.
This was a leftover of an attempt to be smart when sending the patch,
I deeply apologies.
Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/hid-rmi.c')
-rw-r--r-- | drivers/hid/hid-rmi.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/hid/hid-rmi.c b/drivers/hid/hid-rmi.c index 699d631..7da9509 100644 --- a/drivers/hid/hid-rmi.c +++ b/drivers/hid/hid-rmi.c @@ -848,7 +848,6 @@ static int rmi_probe(struct hid_device *hdev, const struct hid_device_id *id) return -EIO; } - hid_hw_stop(hdev); return 0; } |