From: Andrew Morton One of the LEDs driver files wants to use this. Probably drivers/mtd/maps/ipaq-flash.c wants to convert as well - right now it'll be tainting the kernel. Cc: David Woodhouse Cc: Thomas Gleixner Cc: John Bowler Cc: "'Richard Purdie'" Signed-off-by: Andrew Morton --- kernel/module.c | 1 + 1 files changed, 1 insertion(+) diff -puN kernel/module.c~permit-dual-mit-gpl-licenses kernel/module.c --- devel/kernel/module.c~permit-dual-mit-gpl-licenses 2006-02-23 19:41:31.000000000 -0800 +++ devel-akpm/kernel/module.c 2006-02-23 19:41:31.000000000 -0800 @@ -1263,6 +1263,7 @@ static inline int license_is_gpl_compati || 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); } _