PXA: FIX: Deep-sleep return address in stored in PSPR

FIX for a typo-bug: The address is stored in PSPR, not PSSR.

Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
This commit is contained in:
Marek Vasut 2011-09-07 03:25:45 +00:00 committed by Wolfgang Denk
parent 6af1d41a46
commit b793bb92a2
1 changed files with 1 additions and 1 deletions

View File

@ -305,7 +305,7 @@ void pxa_wakeup(void)
pxa_dram_init();
icache_disable();
dcache_disable();
asm volatile("mov pc, %0"::"r"(readl(PSSR)));
asm volatile("mov pc, %0"::"r"(readl(PSPR)));
}
}