diff options
author | K. Y. Srinivasan <[email protected]> | 2012-01-18 08:57:14 -0800 |
---|---|---|
committer | Jiri Kosina <[email protected]> | 2012-02-02 10:56:11 +0100 |
commit | c1c454b8691cc95aa83f19273ed7845914c70e83 (patch) | |
tree | c0a6eb8a8f8f13b246a13fc39fe3050f2e7d8d63 | |
parent | ba18311dff7933ccb9c41bbbb1ad3d70840069b5 (diff) |
HID: hyperv: Properly disconnect the input device
When we unload the mouse driver, properly disconnect the input device.
Signed-off-by: K. Y. Srinivasan <[email protected]>
Signed-off-by: Haiyang Zhang <[email protected]>
Reported-by: Fuzhou Chen <[email protected]>
Cc: stable <[email protected]>
Signed-off-by: Jiri Kosina <[email protected]>
-rw-r--r-- | drivers/hid/hid-hyperv.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/hid/hid-hyperv.c b/drivers/hid/hid-hyperv.c index 0c33ae9cf0f0..406632472c1b 100644 --- a/drivers/hid/hid-hyperv.c +++ b/drivers/hid/hid-hyperv.c @@ -548,6 +548,7 @@ static int mousevsc_remove(struct hv_device *dev) struct mousevsc_dev *input_dev = hv_get_drvdata(dev); vmbus_close(dev->channel); + hid_hw_stop(input_dev->hid_device); hid_destroy_device(input_dev->hid_device); mousevsc_free_device(input_dev); |