From: Jeff Johnson Date: Tue, 4 Jun 2024 15:34:01 +0000 (-0700) Subject: HID: logitech-dj: add missing MODULE_DESCRIPTION() macro X-Git-Tag: v6.11-rc1~148^2~6^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ece3941821cf599af6454d8111b0169a29f08c4d;p=thirdparty%2Flinux.git HID: logitech-dj: add missing MODULE_DESCRIPTION() macro make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/hid/hid-logitech-dj.o Add the missing invocation of the MODULE_DESCRIPTION() macro. Signed-off-by: Jeff Johnson Link: https://lore.kernel.org/r/20240604-md-hid-logitech-dj-v1-1-560f6b3cb54b@quicinc.com Signed-off-by: Benjamin Tissoires --- diff --git a/drivers/hid/hid-logitech-dj.c b/drivers/hid/hid-logitech-dj.c index 3c3c497b6b911..dfa4e3d1a3b33 100644 --- a/drivers/hid/hid-logitech-dj.c +++ b/drivers/hid/hid-logitech-dj.c @@ -2045,6 +2045,7 @@ static struct hid_driver logi_djreceiver_driver = { module_hid_driver(logi_djreceiver_driver); +MODULE_DESCRIPTION("HID driver for Logitech receivers"); MODULE_LICENSE("GPL"); MODULE_AUTHOR("Logitech"); MODULE_AUTHOR("Nestor Lopez Casado");