From: Jeff Johnson Date: Tue, 18 Jun 2024 03:05:34 +0000 (-0700) Subject: fbdev: c2p_planar: add missing MODULE_DESCRIPTION() macro X-Git-Tag: v6.11-rc1~137^2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=24aa3eea5921330fcefa90b536b9db9f759d1faf;p=thirdparty%2Fkernel%2Flinux.git fbdev: c2p_planar: add missing MODULE_DESCRIPTION() macro With ARCH=m68k, make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/video/fbdev/c2p_planar.o Add the missing invocation of the MODULE_DESCRIPTION() macro. Signed-off-by: Jeff Johnson Reviewed-by: Geert Uytterhoeven Signed-off-by: Helge Deller --- diff --git a/drivers/video/fbdev/c2p_planar.c b/drivers/video/fbdev/c2p_planar.c index ec7ac8526f060..22c8c1b6db60b 100644 --- a/drivers/video/fbdev/c2p_planar.c +++ b/drivers/video/fbdev/c2p_planar.c @@ -153,4 +153,5 @@ void c2p_planar(void *dst, const void *src, u32 dx, u32 dy, u32 width, } EXPORT_SYMBOL_GPL(c2p_planar); +MODULE_DESCRIPTION("Fast C2P (Chunky-to-Planar) Conversion"); MODULE_LICENSE("GPL");