diff options
| author | Jeff Johnson <[email protected]> | 2024-06-12 04:56:26 +0000 |
|---|---|---|
| committer | Hans de Goede <[email protected]> | 2024-06-24 11:33:16 +0000 |
| commit | 41ab81ce8490b9cad88e87c49315fb8c46208be7 (patch) | |
| tree | 42cf3bec559f381031e48af49c4db55069ea336b /drivers/platform/x86/intel/rst.c | |
| parent | platform/x86/siemens: add missing MODULE_DESCRIPTION() macros (diff) | |
| download | kernel-41ab81ce8490b9cad88e87c49315fb8c46208be7.tar.gz kernel-41ab81ce8490b9cad88e87c49315fb8c46208be7.zip | |
platform/x86/intel: add missing MODULE_DESCRIPTION() macros
With ARCH=x86, make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/platform/x86/intel/pmc/intel_pmc_core_pltdrv.o
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/platform/x86/intel/intel-hid.o
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/platform/x86/intel/intel-vbtn.o
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/platform/x86/intel/intel-rst.o
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/platform/x86/intel/intel-smartconnect.o
Add the missing invocations of the MODULE_DESCRIPTION() macro.
Signed-off-by: Jeff Johnson <[email protected]>
Link: https://lore.kernel.org/r/20240611-md-drivers-platform-x86-intel-v1-1-5ed967425b04@quicinc.com
Reviewed-by: Hans de Goede <[email protected]>
Signed-off-by: Hans de Goede <[email protected]>
Diffstat (limited to 'drivers/platform/x86/intel/rst.c')
| -rw-r--r-- | drivers/platform/x86/intel/rst.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/platform/x86/intel/rst.c b/drivers/platform/x86/intel/rst.c index 6bc9c4a603e0..f3a60e14d4c1 100644 --- a/drivers/platform/x86/intel/rst.c +++ b/drivers/platform/x86/intel/rst.c @@ -7,6 +7,7 @@ #include <linux/module.h> #include <linux/slab.h> +MODULE_DESCRIPTION("Intel Rapid Start Technology Driver"); MODULE_LICENSE("GPL"); static ssize_t irst_show_wakeup_events(struct device *dev, |
