]> err.no Git - linux-2.6/blobdiff - kernel/module.c
[PATCH] libata: implement ata_port_max_devices()
[linux-2.6] / kernel / module.c
index 08811e26ac9dfb4e4d3b82c832b04689f7ee6e1d..10e5b872adf6f56d2755976dee65a6e8a9a6ab8a 100644 (file)
@@ -44,6 +44,7 @@
 #include <asm/uaccess.h>
 #include <asm/semaphore.h>
 #include <asm/cacheflush.h>
+#include <linux/license.h>
 
 #if 0
 #define DEBUGP printk
@@ -1251,16 +1252,6 @@ static void layout_sections(struct module *mod,
        }
 }
 
-static inline int license_is_gpl_compatible(const char *license)
-{
-       return (strcmp(license, "GPL") == 0
-               || strcmp(license, "GPL v2") == 0
-               || strcmp(license, "GPL and additional rights") == 0
-               || strcmp(license, "Dual BSD/GPL") == 0
-               || strcmp(license, "Dual MIT/GPL") == 0
-               || strcmp(license, "Dual MPL/GPL") == 0);
-}
-
 static void set_license(struct module *mod, const char *license)
 {
        if (!license)