diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-07-17 19:16:20 (GMT) |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-21 00:24:39 (GMT) |
commit | 8b54b6135a3e6d6e7c7967de7b408fd89afb0333 (patch) | |
tree | c2461d4d83f966fb60b2de93687e816d7d4b7a11 /drivers/video | |
parent | da8513c9b84317d1a2071644b6ccf734463d4849 (diff) | |
download | linux-8b54b6135a3e6d6e7c7967de7b408fd89afb0333.tar.xz |
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>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/c2p.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/video/c2p.c b/drivers/video/c2p.c index 5c30bbd..03ceb1a 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"); |