diff options
author | Jeff Johnson <quic_jjohnson@quicinc.com> | 2024-06-13 21:39:42 -0700 |
---|---|---|
committer | Kees Cook <kees@kernel.org> | 2024-06-17 11:56:12 -0700 |
commit | 9b3c13c9ea4ecb2b95948f666560b8df8f358b40 (patch) | |
tree | 518574bc5f06c57dca74bd6819a19feb7826a6d9 /fs/pstore | |
parent | 9dd12ed95c2d06a29a5d289c6e65589c577ef8ca (diff) |
pstore: platform: add missing MODULE_DESCRIPTION() macro
With ARCH=csky, make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in fs/pstore/pstore.o
Add the missing invocation of the MODULE_DESCRIPTION() macro.
Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Link: https://lore.kernel.org/r/20240613-md-csky-fs-pstore-v1-1-c525f636b1cb@quicinc.com
Signed-off-by: Kees Cook <kees@kernel.org>
Diffstat (limited to 'fs/pstore')
-rw-r--r-- | fs/pstore/platform.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/pstore/platform.c b/fs/pstore/platform.c index 03425928d2fb..3497ede88aa0 100644 --- a/fs/pstore/platform.c +++ b/fs/pstore/platform.c @@ -761,4 +761,5 @@ static void __exit pstore_exit(void) module_exit(pstore_exit) MODULE_AUTHOR("Tony Luck <tony.luck@intel.com>"); +MODULE_DESCRIPTION("Persistent Storage - platform driver interface"); MODULE_LICENSE("GPL"); |