From: Benjamin Tissoires Date: Wed, 9 Apr 2014 15:01:34 +0000 (-0400) Subject: HID: rmi: do not stop the device at the end of probe X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=b89f991af08244121e69a3ee90cfa397598cf3ab;p=deliverable%2Flinux.git 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 Signed-off-by: Jiri Kosina --- diff --git a/drivers/hid/hid-rmi.c b/drivers/hid/hid-rmi.c index 699d631c6920..7da9509894de 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; }