From: Jeremy Vial Date: Thu, 31 Jul 2014 13:10:33 +0000 (+0200) Subject: ARM: OMAP3: Fix choice of omap3_restore_es function in OMAP34XX rev3.1.2 case. X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=9b5f7428f8b16bd8980213f2b70baf1dd0b9e36c;p=deliverable%2Flinux.git ARM: OMAP3: Fix choice of omap3_restore_es function in OMAP34XX rev3.1.2 case. According to the comment “restore_es3: applies to 34xx >= ES3.0" in "arch/arm/mach-omap2/sleep34xx.S”, omap3_restore_es3 should be used if the revision of an OMAP34xx is ES3.1.2. Signed-off-by: Jeremy Vial Cc: stable@vger.kernel.org Signed-off-by: Tony Lindgren --- diff --git a/arch/arm/mach-omap2/control.c b/arch/arm/mach-omap2/control.c index f4796c002070..e84e3b4bfde1 100644 --- a/arch/arm/mach-omap2/control.c +++ b/arch/arm/mach-omap2/control.c @@ -309,7 +309,8 @@ void omap3_save_scratchpad_contents(void) scratchpad_contents.public_restore_ptr = virt_to_phys(omap3_restore_3630); else if (omap_rev() != OMAP3430_REV_ES3_0 && - omap_rev() != OMAP3430_REV_ES3_1) + omap_rev() != OMAP3430_REV_ES3_1 && + omap_rev() != OMAP3430_REV_ES3_1_2) scratchpad_contents.public_restore_ptr = virt_to_phys(omap3_restore); else