diff options
author | Jeff Johnson <quic_jjohnson@quicinc.com> | 2024-06-17 20:05:34 -0700 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2024-06-18 14:04:03 +0200 |
commit | 24aa3eea5921330fcefa90b536b9db9f759d1faf (patch) | |
tree | 3d0709d63222e1ada17495710e889a68750c9d75 /drivers/video/fbdev | |
parent | c2bc958b2b03e361f14df99983bc64a39a7323a3 (diff) |
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 <quic_jjohnson@quicinc.com>
Reviewed-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'drivers/video/fbdev')
-rw-r--r-- | drivers/video/fbdev/c2p_planar.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/fbdev/c2p_planar.c b/drivers/video/fbdev/c2p_planar.c index ec7ac8526f06..22c8c1b6db60 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"); |