forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
kfifo: add missing MODULE_DESCRIPTION() macros
make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in samples/kfifo/bytestream-example.o WARNING: modpost: missing MODULE_DESCRIPTION() in samples/kfifo/dma-example.o WARNING: modpost: missing MODULE_DESCRIPTION() in samples/kfifo/inttype-example.o WARNING: modpost: missing MODULE_DESCRIPTION() in samples/kfifo/record-example.o Add the missing invocations of the MODULE_DESCRIPTION() macro. Link: https://lkml.kernel.org/r/[email protected] Signed-off-by: Jeff Johnson <[email protected]> Cc: Greg Kroah-Hartman <[email protected]> Cc: Stefani Seibold <[email protected]> Signed-off-by: Andrew Morton <[email protected]>
- Loading branch information
Showing
4 changed files
with
4 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -191,5 +191,6 @@ static void __exit example_exit(void) | |
|
||
module_init(example_init); | ||
module_exit(example_exit); | ||
MODULE_DESCRIPTION("Sample kfifo byte stream implementation"); | ||
MODULE_LICENSE("GPL"); | ||
MODULE_AUTHOR("Stefani Seibold <[email protected]>"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -138,5 +138,6 @@ static void __exit example_exit(void) | |
|
||
module_init(example_init); | ||
module_exit(example_exit); | ||
MODULE_DESCRIPTION("Sample fifo dma implementation"); | ||
MODULE_LICENSE("GPL"); | ||
MODULE_AUTHOR("Stefani Seibold <[email protected]>"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -182,5 +182,6 @@ static void __exit example_exit(void) | |
|
||
module_init(example_init); | ||
module_exit(example_exit); | ||
MODULE_DESCRIPTION("Sample kfifo int type implementation"); | ||
MODULE_LICENSE("GPL"); | ||
MODULE_AUTHOR("Stefani Seibold <[email protected]>"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -198,5 +198,6 @@ static void __exit example_exit(void) | |
|
||
module_init(example_init); | ||
module_exit(example_exit); | ||
MODULE_DESCRIPTION("Sample dynamic sized record fifo implementation"); | ||
MODULE_LICENSE("GPL"); | ||
MODULE_AUTHOR("Stefani Seibold <[email protected]>"); |