diff options
| author | Randy Dunlap <rdunlap@xenotime.net> | 2011-07-25 20:13:21 -0400 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-08-05 00:58:38 -0400 |
| commit | 4d5553036a151d67c6da2e7581598ead685d452b (patch) | |
| tree | ba064158eea0b6b8ab848038b6a546a96688480c /drivers/firmware | |
| parent | 71e553ad4e5714309ccb6f9311fc1af3b0feaa6c (diff) | |
drivers/firmware/sigma.c needs MODULE_LICENSE
commit 27c46a2546c75c6814562e85b751e3d64c188ad5 upstream.
Fix module tainting message:
sigma: module license 'unspecified' taints kernel.
Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Acked-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/firmware')
| -rw-r--r-- | drivers/firmware/sigma.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/firmware/sigma.c b/drivers/firmware/sigma.c index c19cd2c39fa..f10fc521951 100644 --- a/drivers/firmware/sigma.c +++ b/drivers/firmware/sigma.c | |||
| @@ -11,6 +11,7 @@ | |||
| 11 | #include <linux/firmware.h> | 11 | #include <linux/firmware.h> |
| 12 | #include <linux/kernel.h> | 12 | #include <linux/kernel.h> |
| 13 | #include <linux/i2c.h> | 13 | #include <linux/i2c.h> |
| 14 | #include <linux/module.h> | ||
| 14 | #include <linux/sigma.h> | 15 | #include <linux/sigma.h> |
| 15 | 16 | ||
| 16 | /* Return: 0==OK, <0==error, =1 ==no more actions */ | 17 | /* Return: 0==OK, <0==error, =1 ==no more actions */ |
| @@ -113,3 +114,5 @@ int process_sigma_firmware(struct i2c_client *client, const char *name) | |||
| 113 | return ret; | 114 | return ret; |
| 114 | } | 115 | } |
| 115 | EXPORT_SYMBOL(process_sigma_firmware); | 116 | EXPORT_SYMBOL(process_sigma_firmware); |
| 117 | |||
| 118 | MODULE_LICENSE("GPL"); | ||
