Skip to content

Commit b95f5bc

Browse files
kattisrinivasanJiri Kosina
authored andcommitted
HID: Move the hid-hyperv driver out of staging
The file hid-hyperv.c implements a hid compliant mouse driver for use on a Hyper-V based system. This driver is currently in the staging area and as part of the effort to move this driver out of staging, I had posted the driver code for community review a few weeks ago. This current patch addresses all the review comments I have gotten to date. All the relevant patches have already been submitted to the staging tree as well. As per Greg's suggestion, this patch does not get rid of the code from the staging area. Once the mouse driver lands under the hid directory, we will cleanup the staging directory. Signed-off-by: K. Y. Srinivasan <kys@microsoft.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
1 parent 30307c6 commit b95f5bc

File tree

3 files changed

+589
-0
lines changed

3 files changed

+589
-0
lines changed

drivers/hid/Kconfig

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -643,6 +643,12 @@ config HID_ZYDACRON
643643
---help---
644644
Support for Zydacron remote control.
645645

646+
config HYPERV_MOUSE
647+
tristate "Microsoft Hyper-V mouse driver"
648+
depends on HYPERV
649+
---help---
650+
Select this option to enable the Hyper-V mouse driver.
651+
646652
endmenu
647653

648654
endif # HID_SUPPORT

drivers/hid/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ obj-$(CONFIG_HID_ZYDACRON) += hid-zydacron.o
7878
obj-$(CONFIG_HID_WACOM) += hid-wacom.o
7979
obj-$(CONFIG_HID_WALTOP) += hid-waltop.o
8080
obj-$(CONFIG_HID_WIIMOTE) += hid-wiimote.o
81+
obj-$(CONFIG_HYPERV_MOUSE) += hid-hyperv.o
8182

8283
obj-$(CONFIG_USB_HID) += usbhid/
8384
obj-$(CONFIG_USB_MOUSE) += usbhid/

0 commit comments

Comments
 (0)