Skip to content

Commit

Permalink
platform/x86: classmate-laptop: Add missing MODULE_DESCRIPTION()
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Andy Shevchenko authored and Hans de Goede committed Apr 29, 2024
1 parent b2ed33e commit 22813a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/platform/x86/classmate-laptop.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@
#include <linux/input.h>
#include <linux/rfkill.h>

MODULE_LICENSE("GPL");

struct cmpc_accel {
int sensitivity;
int g_select;
Expand Down Expand Up @@ -1144,3 +1142,5 @@ static const struct acpi_device_id cmpc_device_ids[] __maybe_unused = {
};

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

0 comments on commit 22813a1

Please sign in to comment.