Message ID | 4E121597.9020904@8d.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
diff --git a/arch/arm/mach-omap2/omap_twl.c b/arch/arm/mach-omap2/omap_twl.c index 07d6140..13b9fbd 100644 --- a/arch/arm/mach-omap2/omap_twl.c +++ b/arch/arm/mach-omap2/omap_twl.c @@ -266,7 +266,7 @@ int __init omap3_twl_init(void) { struct voltagedomain *voltdm; - if (!cpu_is_omap34xx()) + if (!cpu_is_omap34xx() || cpu_is_omap3505() || cpu_is_omap3517() ) return -ENODEV; if (cpu_is_omap3630()) {
In cpu.h, OMAP35XX_CLASS is currently defined as 0x35000034. the cpu_is_omap34xx() return 1 even on am3505 and am3517. I'm not sure if the CPU class bits should be changed to 0x35 (redefining OMAP35XX_CLASS to 0x35000035). So instead, I'm adding code to explicitely ignore am3505 and am3517. Signed-off-by: Raphael Assenat <raph@8d.com> -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html