aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/module.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/module.c')
-rw-r--r--kernel/module.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/kernel/module.c b/kernel/module.c
index 08811e26ac9d..10e5b872adf6 100644
--- a/kernel/module.c
+++ b/kernel/module.c
@@ -44,6 +44,7 @@
44#include <asm/uaccess.h> 44#include <asm/uaccess.h>
45#include <asm/semaphore.h> 45#include <asm/semaphore.h>
46#include <asm/cacheflush.h> 46#include <asm/cacheflush.h>
47#include <linux/license.h>
47 48
48#if 0 49#if 0
49#define DEBUGP printk 50#define DEBUGP printk
@@ -1251,16 +1252,6 @@ static void layout_sections(struct module *mod,
1251 } 1252 }
1252} 1253}
1253 1254
1254static inline int license_is_gpl_compatible(const char *license)
1255{
1256 return (strcmp(license, "GPL") == 0
1257 || strcmp(license, "GPL v2") == 0
1258 || strcmp(license, "GPL and additional rights") == 0
1259 || strcmp(license, "Dual BSD/GPL") == 0
1260 || strcmp(license, "Dual MIT/GPL") == 0
1261 || strcmp(license, "Dual MPL/GPL") == 0);
1262}
1263
1264static void set_license(struct module *mod, const char *license) 1255static void set_license(struct module *mod, const char *license)
1265{ 1256{
1266 if (!license) 1257 if (!license)