Subject: [PATCH] drivers/video/c2p.c: add MODULE_LICENSE From: Adrian Bunk This patch adds the missing MODULE_LICENSE("GPL"). Reported-by: Adrian Bunk Signed-off-by: Adrian Bunk Signed-off-by: Geert Uytterhoeven --- drivers/video/c2p.c | 2 ++ 1 file changed, 2 insertions(+) --- a/drivers/video/c2p.c +++ b/drivers/video/c2p.c @@ -12,6 +12,7 @@ * for more details. */ +#include #include #include "c2p.h" @@ -227,3 +228,4 @@ void c2p(u8 *dst, const u8 *src, u32 dx, } } +MODULE_LICENSE("GPL");