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 --- 25/kernel/module.c~permit-dual-mit-gpl-licenses Tue Feb 7 14:03:51 2006 +++ 25-akpm/kernel/module.c Tue Feb 7 14:04:04 2006 @@ -1374,6 +1374,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); } _