On Wed, Jun 22, 2011 at 04:16:58PM +0100, Russell King - ARM Linux wrote: > + /* Now branch to the common CPU resume function */ > + ldr r0, =cpu_resume > + bx r0 > > + .ltorg A slight correction - firstly this code does not run from SRAM. Secondly, this will try to branch to the virtual address of cpu_resume which is not a good idea. Replace this with: b cpu_resume and comment out the auxillary control register write in proc-v7.S, and it should work on OMAP3. -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html