aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@kernel.org>2008-07-17 21:16:20 +0200
committerLinus Torvalds <torvalds@linux-foundation.org>2008-07-20 17:24:39 -0700
commit8b54b6135a3e6d6e7c7967de7b408fd89afb0333 (patch)
treec2461d4d83f966fb60b2de93687e816d7d4b7a11
parentatafb: Register Atari-specific video modes with sysfs (diff)
downloadlinux-dev-8b54b6135a3e6d6e7c7967de7b408fd89afb0333.tar.xz
linux-dev-8b54b6135a3e6d6e7c7967de7b408fd89afb0333.zip
drivers/video/c2p.c: add MODULE_LICENSE
This patch adds the missing MODULE_LICENSE("GPL"). Reported-by: Adrian Bunk <bunk@kernel.org> Signed-off-by: Adrian Bunk <bunk@kernel.org> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--drivers/video/c2p.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/video/c2p.c b/drivers/video/c2p.c
index 5c30bbd33054..03ceb1a5743b 100644
--- a/drivers/video/c2p.c
+++ b/drivers/video/c2p.c
@@ -12,6 +12,7 @@
* for more details.
*/
+#include <linux/module.h>
#include <linux/string.h>
#include "c2p.h"
@@ -227,3 +228,4 @@ void c2p(u8 *dst, const u8 *src, u32 dx, u32 dy, u32 width, u32 height,
}
}
+MODULE_LICENSE("GPL");