diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2010-04-06 14:34:57 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-04-07 08:38:03 -0700 |
commit | a71dc148c2674bbb5988ea924702137993b3305a (patch) | |
tree | 06d44f94c400af54526226641d1e5a909a8c79e8 /drivers | |
parent | d6da1a5abc2bf3a06a5bda08e0f6833409234666 (diff) | |
download | linux-3.10-a71dc148c2674bbb5988ea924702137993b3305a.tar.gz linux-3.10-a71dc148c2674bbb5988ea924702137993b3305a.tar.bz2 linux-3.10-a71dc148c2674bbb5988ea924702137993b3305a.zip |
mb862xxfb: fix acceleration module license
mb862xxfb_accel built as a separate module, but it does not have a
MODULE_LICENSE, so it taints the kernel. Add a MODULE_LICENSE to it (same
as mb862xxfb license).
mb862xxfb_accel: module license 'unspecified' taints kernel.
Or should mb862xxfb_accel be built into the mb862xxfb binary file instead?
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Acked-by: Alexander Shishkin <virtuoso@slind.org>
Cc: Valentin Sitdikov <v.sitdikov@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/video/mb862xx/mb862xxfb_accel.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/video/mb862xx/mb862xxfb_accel.c b/drivers/video/mb862xx/mb862xxfb_accel.c index 841424912ec..b0bf4d8fff0 100644 --- a/drivers/video/mb862xx/mb862xxfb_accel.c +++ b/drivers/video/mb862xx/mb862xxfb_accel.c @@ -16,6 +16,7 @@ #include <linux/delay.h> #include <linux/init.h> #include <linux/interrupt.h> +#include <linux/module.h> #include <linux/pci.h> #include <linux/slab.h> #if defined(CONFIG_OF) @@ -330,3 +331,5 @@ void mb862xxfb_init_accel(struct fb_info *info, int xres) info->fix.accel = 0xff; /*FIXME: add right define */ } EXPORT_SYMBOL(mb862xxfb_init_accel); + +MODULE_LICENSE("GPL v2"); |