aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/auxdisplay
diff options
context:
space:
mode:
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>2024-04-09 19:14:44 +0300
committerAndy Shevchenko <andriy.shevchenko@linux.intel.com>2024-04-11 13:32:05 +0300
commit29b08729abf5fcf1c3844de34ddfcc5e6d7a11a4 (patch)
treecc205954087d41dc39dc0e38d08aa2a343f24475 /drivers/auxdisplay
parentc352a04107264ff5ec3c38db044137cd99c4ba55 (diff)
downloadlinux-29b08729abf5fcf1c3844de34ddfcc5e6d7a11a4.tar.gz
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>
Diffstat (limited to 'drivers/auxdisplay')
-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 6d309e4971b61..5df019720c561 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");