mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
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:
parent
6af1d41a46
commit
b793bb92a2
1 changed files with 1 additions and 1 deletions
|
@ -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)));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue