aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Salisbury <[email protected]>2019-05-30 13:37:20 -0400
committerJiri Kosina <[email protected]>2019-06-01 00:18:04 +0200
commit64caea53e07f0a3bc4af74f4123b258c1ceb4d67 (patch)
tree2cf79df35fe54749b33b9bf722ceab9b88491591
parent2409877d386de709606ca7eecf7c10d2838525a1 (diff)
HID: hyperv: Add a module description line
This patch only adds a MODULE_DESCRIPTION statement to the driver. This change is only cosmetic, so there should be no runtime impact. Signed-off-by: Joseph Salisbury <[email protected]> Reviewed-by: Michael Kelley <[email protected]> Signed-off-by: Sasha Levin <[email protected]> Signed-off-by: Jiri Kosina <[email protected]>
-rw-r--r--drivers/hid/hid-hyperv.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/hid/hid-hyperv.c b/drivers/hid/hid-hyperv.c
index 704049e62d58..d3311d714d35 100644
--- a/drivers/hid/hid-hyperv.c
+++ b/drivers/hid/hid-hyperv.c
@@ -614,5 +614,7 @@ static void __exit mousevsc_exit(void)
}
MODULE_LICENSE("GPL");
+MODULE_DESCRIPTION("Microsoft Hyper-V Synthetic HID Driver");
+
module_init(mousevsc_init);
module_exit(mousevsc_exit);