diff options
author | K. Y. Srinivasan <kys@microsoft.com> | 2012-01-18 08:57:14 -0800 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2012-02-02 10:56:11 +0100 |
commit | c1c454b8691cc95aa83f19273ed7845914c70e83 (patch) | |
tree | c0a6eb8a8f8f13b246a13fc39fe3050f2e7d8d63 /drivers/hid/hid-hyperv.c | |
parent | ba18311dff7933ccb9c41bbbb1ad3d70840069b5 (diff) | |
download | linux-c1c454b8691cc95aa83f19273ed7845914c70e83.tar.bz2 |
HID: hyperv: Properly disconnect the input device
When we unload the mouse driver, properly disconnect the input device.
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>
Reported-by: Fuzhou Chen <fuzhouch@microsoft.com>
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/hid-hyperv.c')
-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); |