Skip to content

Commit 22813a1

Browse files
andy-shevjwrdegoede
authored andcommitted
platform/x86: classmate-laptop: Add missing MODULE_DESCRIPTION()
The modpost script is not happy WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/platform/x86/classmate-laptop.o because there is a missing module description. Add it to the module. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Acked-by: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com> Link: https://lore.kernel.org/r/20240423161108.2636958-1-andriy.shevchenko@linux.intel.com Reviewed-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
1 parent b2ed33e commit 22813a1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/platform/x86/classmate-laptop.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313
#include <linux/input.h>
1414
#include <linux/rfkill.h>
1515

16-
MODULE_LICENSE("GPL");
17-
1816
struct cmpc_accel {
1917
int sensitivity;
2018
int g_select;
@@ -1144,3 +1142,5 @@ static const struct acpi_device_id cmpc_device_ids[] __maybe_unused = {
11441142
};
11451143

11461144
MODULE_DEVICE_TABLE(acpi, cmpc_device_ids);
1145+
MODULE_DESCRIPTION("Support for Intel Classmate PC ACPI devices");
1146+
MODULE_LICENSE("GPL");

0 commit comments

Comments
 (0)