Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

video: fbdev/mmp: add MODULE_LICENSE

Kbuild complains about the lack of a license tag in this driver:

WARNING: modpost: missing MODULE_LICENSE() in drivers/video/fbdev/mmp/mmp_disp.o

This adds the license, author and description tags.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>

authored by

Arnd Bergmann and committed by
Bartlomiej Zolnierkiewicz
c1530ac5 724ba8b3

+5
+5
drivers/video/fbdev/mmp/core.c
··· 23 23 #include <linux/slab.h> 24 24 #include <linux/dma-mapping.h> 25 25 #include <linux/export.h> 26 + #include <linux/module.h> 26 27 #include <video/mmp_disp.h> 27 28 28 29 static struct mmp_overlay *path_get_overlay(struct mmp_path *path, ··· 250 249 mutex_unlock(&disp_lock); 251 250 } 252 251 EXPORT_SYMBOL_GPL(mmp_unregister_path); 252 + 253 + MODULE_AUTHOR("Zhou Zhu <zzhu3@marvell.com>"); 254 + MODULE_DESCRIPTION("Marvell MMP display framework"); 255 + MODULE_LICENSE("GPL");