diff options
author | Jeff Johnson <[email protected]> | 2024-06-01 17:12:01 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2024-07-10 14:59:01 +0200 |
commit | feb1f0cba17a05c145cbe9dcf6c4736990e106d7 (patch) | |
tree | 3097a263a9b9e630f1cde9af7750f15dd08d658b | |
parent | 5f67eef6dff39421215e9134f1eaae51b67a73b7 (diff) |
samples: configfs: add missing MODULE_DESCRIPTION() macro
make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in samples/configfs/configfs_sample.o
Add the missing invocation of the MODULE_DESCRIPTION() macro.
Signed-off-by: Jeff Johnson <[email protected]>
Nacked-by: Christoph Hellwig <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | samples/configfs/configfs_sample.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/samples/configfs/configfs_sample.c b/samples/configfs/configfs_sample.c index 37a657b25d58..fd5d163828c5 100644 --- a/samples/configfs/configfs_sample.c +++ b/samples/configfs/configfs_sample.c @@ -364,4 +364,5 @@ static void __exit configfs_example_exit(void) module_init(configfs_example_init); module_exit(configfs_example_exit); +MODULE_DESCRIPTION("Sample configfs module"); MODULE_LICENSE("GPL"); |