diff options
author | Jeff Johnson <[email protected]> | 2024-06-08 20:21:47 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2024-06-24 15:18:01 +0200 |
commit | f2278c6117c0f689d1a2be11a8701703439158e4 (patch) | |
tree | dea4eed3cdb281100073ee28ebc825662ceede1c | |
parent | baf41dbed78e1296621643da90c93ed5d3d3d695 (diff) |
staging: fbtft: add missing MODULE_DESCRIPTION() macro
make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/staging/fbtft/fbtft.o
Add the missing invocation of the MODULE_DESCRIPTION() macro.
Signed-off-by: Jeff Johnson <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/staging/fbtft/fbtft-core.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/fbtft/fbtft-core.c b/drivers/staging/fbtft/fbtft-core.c index c8d52c63d79f..8e2fd0c0fee2 100644 --- a/drivers/staging/fbtft/fbtft-core.c +++ b/drivers/staging/fbtft/fbtft-core.c @@ -1276,4 +1276,5 @@ void fbtft_remove_common(struct device *dev, struct fb_info *info) } EXPORT_SYMBOL(fbtft_remove_common); +MODULE_DESCRIPTION("Core FB support for small TFT LCD display modules"); MODULE_LICENSE("GPL"); |