Skip to content

Commit 5bd8d70

Browse files
Jeff JohnsonBenjamin Tissoires
authored andcommitted
HID: add more missing MODULE_DESCRIPTION() macros
make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/hid/hid-holtek-mouse.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/hid/hid-ite.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/hid/hid-kensington.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/hid/hid-keytouch.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/hid/hid-kye.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/hid/hid-lcpower.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/hid/hid-lenovo.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/hid/hid-winwing.o Add the missing invocations of the MODULE_DESCRIPTION() macro. Signed-off-by: Jeff Johnson <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Benjamin Tissoires <[email protected]>
1 parent 9d262f3 commit 5bd8d70

File tree

8 files changed

+8
-0
lines changed

8 files changed

+8
-0
lines changed

drivers/hid/hid-holtek-mouse.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,4 +110,5 @@ static struct hid_driver holtek_mouse_driver = {
110110
};
111111

112112
module_hid_driver(holtek_mouse_driver);
113+
MODULE_DESCRIPTION("HID driver for Holtek gaming mice");
113114
MODULE_LICENSE("GPL");

drivers/hid/hid-ite.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,4 +141,5 @@ static struct hid_driver ite_driver = {
141141
module_hid_driver(ite_driver);
142142

143143
MODULE_AUTHOR("Hans de Goede <[email protected]>");
144+
MODULE_DESCRIPTION("HID driver for some ITE \"special\" devices");
144145
MODULE_LICENSE("GPL");

drivers/hid/hid-kensington.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,5 @@ static struct hid_driver ks_driver = {
4646
};
4747
module_hid_driver(ks_driver);
4848

49+
MODULE_DESCRIPTION("HID driver for Kensigton Slimblade Trackball");
4950
MODULE_LICENSE("GPL");

drivers/hid/hid-keytouch.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,6 @@ static struct hid_driver keytouch_driver = {
4848
};
4949
module_hid_driver(keytouch_driver);
5050

51+
MODULE_DESCRIPTION("HID driver for Keytouch devices not fully compliant with HID standard");
5152
MODULE_LICENSE("GPL");
5253
MODULE_AUTHOR("Jiri Kosina");

drivers/hid/hid-kye.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -671,4 +671,5 @@ static struct hid_driver kye_driver = {
671671
};
672672
module_hid_driver(kye_driver);
673673

674+
MODULE_DESCRIPTION("HID driver for Kye/Genius devices not fully compliant with HID standard");
674675
MODULE_LICENSE("GPL");

drivers/hid/hid-lcpower.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,5 @@ static struct hid_driver ts_driver = {
5353
};
5454
module_hid_driver(ts_driver);
5555

56+
MODULE_DESCRIPTION("HID driver for LC Power Model RC1000MCE");
5657
MODULE_LICENSE("GPL");

drivers/hid/hid-lenovo.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1442,4 +1442,5 @@ static struct hid_driver lenovo_driver = {
14421442
};
14431443
module_hid_driver(lenovo_driver);
14441444

1445+
MODULE_DESCRIPTION("HID driver for IBM/Lenovo");
14451446
MODULE_LICENSE("GPL");

drivers/hid/hid-winwing.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,4 +223,5 @@ static struct hid_driver winwing_driver = {
223223
};
224224
module_hid_driver(winwing_driver);
225225

226+
MODULE_DESCRIPTION("HID driver for WinWing Orion 2 throttle");
226227
MODULE_LICENSE("GPL");

0 commit comments

Comments
 (0)