aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnson <[email protected]>2024-06-03 06:30:20 -0700
committerIra Weiny <[email protected]>2024-06-17 18:41:17 -0500
commit3101daba2b08662d1ff4f75ebc8921745bf1184f (patch)
tree7b25e712044003ad9d4173a0ccd2aa31b85e49b9
parent0858582e7e1df72eb44edf779008ba4dee7f0d75 (diff)
ACPI: NFIT: add missing MODULE_DESCRIPTION() macro
make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/acpi/nfit/nfit.o Add the missing invocation of the MODULE_DESCRIPTION() macro. [iweiny: edit description] Signed-off-by: Jeff Johnson <[email protected]> Reviewed-by: Dave Jiang <[email protected]> Link: https://patch.msgid.link/r/[email protected] Signed-off-by: Ira Weiny <[email protected]>
-rw-r--r--drivers/acpi/nfit/core.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/acpi/nfit/core.c b/drivers/acpi/nfit/core.c
index d4595d1985b1..5429ec9ef06f 100644
--- a/drivers/acpi/nfit/core.c
+++ b/drivers/acpi/nfit/core.c
@@ -3531,5 +3531,6 @@ static __exit void nfit_exit(void)
module_init(nfit_init);
module_exit(nfit_exit);
+MODULE_DESCRIPTION("ACPI NVDIMM Firmware Interface Table (NFIT) driver");
MODULE_LICENSE("GPL v2");
MODULE_AUTHOR("Intel Corporation");