summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>2024-04-09 18:14:44 +0200
committerAndy Shevchenko <andriy.shevchenko@linux.intel.com>2024-04-11 12:32:05 +0200
commit29b08729abf5fcf1c3844de34ddfcc5e6d7a11a4 (patch)
treecc205954087d41dc39dc0e38d08aa2a343f24475
parentauxdisplay: seg-led-gpio: Convert to platform remove callback returning void (diff)
downloadlinux-29b08729abf5fcf1c3844de34ddfcc5e6d7a11a4.tar.xz
linux-29b08729abf5fcf1c3844de34ddfcc5e6d7a11a4.zip
auxdisplay: charlcd: Add missing MODULE_DESCRIPTION()
The modpost script is not happy WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/auxdisplay/charlcd.o because there is a missing module description. Add it to the module. Reviewed-by: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
-rw-r--r--drivers/auxdisplay/charlcd.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/auxdisplay/charlcd.c b/drivers/auxdisplay/charlcd.c
index 6d309e4971b6..5df019720c56 100644
--- a/drivers/auxdisplay/charlcd.c
+++ b/drivers/auxdisplay/charlcd.c
@@ -678,4 +678,5 @@ int charlcd_unregister(struct charlcd *lcd)
}
EXPORT_SYMBOL_GPL(charlcd_unregister);
+MODULE_DESCRIPTION("Character LCD core support");
MODULE_LICENSE("GPL");